Index: test/simdjs/generate.py |
diff --git a/test/simdjs/generate.py b/test/simdjs/generate.py |
index 9dc41cff57016e3b8182dd63828c1c606129c9e0..f2e55d98507f773fb0c8762537bffca9b7d1eb26 100755 |
--- a/test/simdjs/generate.py |
+++ b/test/simdjs/generate.py |
@@ -28,11 +28,18 @@ tests = [t for t in tests if t not in SKIP_FILES] |
output = { |
'name': 'SIMDJS', |
'run_count': 5, |
+ 'run_count_arm': 3, |
+ 'run_count_android_arm': 3, |
+ 'run_count_android_arm64': 3, |
+ 'timeout_arm': 120, |
+ 'timeout_android_arm': 120, |
+ 'timeout_android_arm64': 120, |
'units': 'ms', |
- 'total': True, |
'resources': [ |
'test/simdjs/data/src/benchmarks/base.js', |
- 'test/simdjs/data/src/ecmascript_simd.js' |
+ 'test/simdjs/data/src/ecmascript_simd.js', |
+ 'test/simdjs/harness-adapt.js', |
+ 'test/simdjs/harness-finish.js' |
] + ['test/simdjs/data/src/benchmarks/%s.js' % t for t in tests], |
'flags': ['--harmony-object', 'test/simdjs/harness-adapt.js'], |
'path': ['../../'], |
@@ -52,5 +59,5 @@ output = { |
for test in tests], |
} |
-with open(os.path.join(SCRIPT_DIR, 'SimdJS.json'), 'w') as fh: |
+with open(os.path.join(SCRIPT_DIR, 'SimdJs.json'), 'w') as fh: |
bradn
2015/05/20 18:29:31
wow, how'd manage that!
|
fh.write(json.dumps(output, separators=(',',': '), indent=2, sort_keys=True)) |