diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-19 09:50:39 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-19 09:50:39 -0800 |
commit | 181a08d468d13914cb93dff8a9884e7cf15f5687 (patch) | |
tree | bec1a86b9ba69e6c73cc8ab1f4475f464a22c684 | |
parent | 68bc17077e0919d369fe898631f7a2108487534a (diff) |
remove java_nbody from core benchmarks
-rw-r--r-- | tests/test_benchmark.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/test_benchmark.py b/tests/test_benchmark.py index 9168c4de..284d7c22 100644 --- a/tests/test_benchmark.py +++ b/tests/test_benchmark.py @@ -441,6 +441,7 @@ class benchmark(RunnerCore): self.do_benchmark('linpack_float', open(path_from_root('tests', 'linpack.c')).read(), '''Unrolled Single Precision''', force_c=True, output_parser=output_parser, shared_args=['-DSP']) def test_zzz_java_nbody(self): # tests xmlvm compiled java, including bitcasts of doubles, i64 math, etc. + if CORE_BENCHMARKS: return args = [path_from_root('tests', 'nbody-java', x) for x in os.listdir(path_from_root('tests', 'nbody-java')) if x.endswith('.c')] + \ ['-I' + path_from_root('tests', 'nbody-java')] self.do_benchmark('nbody_java', '', '''Time(s)''', |