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

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

Issue 1837663002: Initial Subzero WASM prototype. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Cleanup Created 4 years, 9 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
« src/WasmTranslator.cpp ('K') | « src/WasmTranslator.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: wasm-run-torture-tests.py
diff --git a/wasm-run-torture-tests.py b/wasm-run-torture-tests.py
new file mode 100755
index 0000000000000000000000000000000000000000..13aca8ccd3e68e6811903d3054e529a92349bcc4
--- /dev/null
+++ b/wasm-run-torture-tests.py
@@ -0,0 +1,46 @@
+#!/usr/bin/python3
JF 2016/03/28 18:17:14 I think the following is more common: #!/usr/bin/e
Eric Holk 2016/03/29 19:54:12 Done.
+
+import glob
+import os
+import sys
+
+success_count = 0
+fail_count = 0
+failures = []
+
+def run_test(test_file, verbose=False):
+ global success_count
+ global fail_count
+
+ cmd = "LD_LIBRARY_PATH=~/nacl/v8/out/native/lib.target ./pnacl-sz -filetype=asm -target=arm32 {} -threads=0 -O2 -verbose=wasm".format(test_file)
Jim Stichnoth 2016/03/29 17:49:57 80-col Yucky absolute paths. -target=arm32??? M
Eric Holk 2016/03/29 22:58:07 Done.
+
+ if not verbose:
+ cmd += " &> /dev/null"
+
+ sys.stdout.write(test_file + "...");
+ status = os.system(cmd);
+ if status != 0:
+ fail_count += 1
+ print('\033[1;31m[fail]\033[1;m')
+ failures.append(test_file)
+ else:
+ success_count += 1
+ print('\033[1;32m[ok]\033[1;m')
+
+
+verbose = False
+
+if len(sys.argv) > 1:
+ test_files = sys.argv[1:]
+ verbose = True
+else:
+ test_files = glob.glob("./torture-s2wasm-sexpr-wasm/*.wasm")
+
+for test_file in test_files:
+ run_test(test_file, verbose)
+
+if len(failures) > 0:
+ print("Failures:")
+ for f in failures:
+ print(" \033[1;31m" + f + "\033[1;m")
+print("{} / {} tests passed".format(success_count, success_count + fail_count))
« src/WasmTranslator.cpp ('K') | « src/WasmTranslator.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698