Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Unified Diff: test/simdjs/generate.py

Issue 1149723002: [test] Fix simdjs perf tests. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Keep old name Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/simdjs/SimdJs.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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))
« no previous file with comments | « test/simdjs/SimdJs.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698