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

Unified Diff: pydir/wasm-run-torture-tests.py

Issue 1876413002: Subzero. WASM. Additional progress. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review feedback and merging with master Created 4 years, 8 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 | « fetch-torture-tests.sh ('k') | runtime/wasm-runtime.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pydir/wasm-run-torture-tests.py
diff --git a/pydir/wasm-run-torture-tests.py b/pydir/wasm-run-torture-tests.py
index de0bb21735acdacf241fe8a380b32479fb8a958d..c55d94a50c424f04abbe1332acf41c967d4b16bc 100755
--- a/pydir/wasm-run-torture-tests.py
+++ b/pydir/wasm-run-torture-tests.py
@@ -22,13 +22,13 @@ def run_test(test_file, verbose=False):
global fail_count
cmd = """LD_LIBRARY_PATH=../../../../v8/out/native/lib.target ./pnacl-sz \
- -filetype=asm -target=arm32 {} -threads=0 -O2 \
+ -filetype=asm -target=x8632 {} -threads=0 -O2 \
-verbose=wasm""".format(test_file)
if not verbose:
cmd += " &> /dev/null"
- sys.stdout.write(test_file + "...");
+ sys.stdout.write(test_file + " ...");
status = os.system(cmd);
if status != 0:
fail_count += 1
@@ -45,7 +45,7 @@ if len(sys.argv) > 1:
test_files = sys.argv[1:]
verbose = True
else:
- test_files = glob.glob("./torture-s2wasm-sexpr-wasm.old/*.wasm")
+ test_files = glob.glob("./torture-s2wasm-sexpr-wasm/*.wasm")
for test_file in test_files:
run_test(test_file, verbose)
« no previous file with comments | « fetch-torture-tests.sh ('k') | runtime/wasm-runtime.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698