diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 12:03:21 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-11-18 12:03:46 -0800 |
commit | 61de2f8971271c9412174d67932d64d228e42eaf (patch) | |
tree | d21ebd88a9eda6ced7ff0319d43089bcc4428871 | |
parent | 163c038142e55ed04b223ec7990c16e57496a6dd (diff) |
fix sanity.test_emcc_caching
-rw-r--r-- | tests/test_sanity.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_sanity.py b/tests/test_sanity.py index a405c3a3..c7dd86e4 100644 --- a/tests/test_sanity.py +++ b/tests/test_sanity.py @@ -360,7 +360,7 @@ fi try_delete(basebc_name) # we might need to check this file later try_delete(dcebc_name) # we might need to check this file later for ll_name in ll_names: try_delete(ll_name) - output = self.do([compiler, '-O' + str(i), '-s', 'RELOOP=0', '--llvm-lto', '0', path_from_root('tests', filename)]) + output = self.do([compiler, '-O' + str(i), '-s', 'RELOOP=0', '--llvm-lto', '0', path_from_root('tests', filename), '--save-bc', 'a.bc']) #print output assert INCLUDING_MESSAGE.replace('X', libname) in output if libname == 'libc': |