зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1269517 - Outfit the configure tests' fake compiler to handle compilation calls. r=glandium
MozReview-Commit-ID: 80kwRjHUJb9
This commit is contained in:
Родитель
8a818960e0
Коммит
46a1df138f
|
@ -190,6 +190,10 @@ class FakeCompiler(dict):
|
|||
pp.out = StringIO()
|
||||
pp.do_include(file)
|
||||
return 0, pp.out.getvalue(), ''
|
||||
elif '-c' in flags:
|
||||
if '-funknown-flag' in flags:
|
||||
return 1, '', ''
|
||||
return 0, '', ''
|
||||
|
||||
return 1, '', ''
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче