This commit is contained in:
Alon Zakai 2013-12-20 17:37:28 -08:00
Родитель 982d3e0bc5
Коммит d48f314a99
3 изменённых файлов: 985 добавлений и 0 удалений

982
tests/fuzz/17.c Normal file

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

1
tests/fuzz/17.c.txt Normal file
Просмотреть файл

@ -0,0 +1 @@
checksum = B0C9CB31

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

@ -5073,6 +5073,8 @@ def process(filename):
print x
for name in glob.glob(path_from_root('tests', 'fuzz', '*.c')):
#if os.path.basename(name) != '4.c': continue
if os.environ.get('EMCC_FAST_COMPILER') == '1' and os.path.basename(name) in ['17.c']: continue # pnacl limitation in not legalizing i104, i96, etc.
print name
self.do_run(open(path_from_root('tests', 'fuzz', name)).read(),
open(path_from_root('tests', 'fuzz', name + '.txt')).read(), force_c=True)