Bug 1269517 - Outfit the configure tests' fake compiler to handle compilation calls. r=glandium

MozReview-Commit-ID: 80kwRjHUJb9
This commit is contained in:
Chris Manchester 2016-07-26 15:27:19 -07:00
Родитель 8a818960e0
Коммит 46a1df138f
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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, '', ''