diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-08-06 13:54:59 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-08-06 13:54:59 -0700 |
commit | 1cb6dfae9576c653f14e3adf4f7a4cd15dc5ef0b (patch) | |
tree | 1257a755532b1b038bc068453b99425b58329be2 | |
parent | f50eca757a4df4f5bfae97d11a3499265a0437c1 (diff) |
use compiler test opts in cache name for libraries, to increase coverage and avoid problems where depending on the order of tests results can be different
-rwxr-xr-x | tests/runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 46096213..1e7585e3 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -353,7 +353,7 @@ process(sys.argv[1]) build_dir = self.get_build_dir() output_dir = self.get_dir() - cache_name = name + cache_name_extra + (self.env.get('EMCC_LLVM_TARGET') or '') + cache_name = name + str(Building.COMPILER_TEST_OPTS) + cache_name_extra + (self.env.get('EMCC_LLVM_TARGET') or '') if self.library_cache is not None: if cache and self.library_cache.get(cache_name): |