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

Unified Diff: tools/run-tests.py

Issue 1204643003: [test] Teach test runner about whether novfp3 is on or off (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 5 years, 6 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 | « tools/run-deopt-fuzzer.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index dc6ff9f7d63c5597afa2b598e388b1e071f163ee..76476271f1241a60b2d737257b04acb785f1782f 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -187,6 +187,9 @@ def BuildOptions():
result.add_option("--dcheck-always-on",
help="Indicates that V8 was compiled with DCHECKs enabled",
default=False, action="store_true")
+ result.add_option("--novfp3",
+ help="Indicates that V8 was compiled without VFP3 support",
+ default=False, action="store_true")
result.add_option("--cat", help="Print the source of the tests",
default=False, action="store_true")
result.add_option("--flaky-tests",
@@ -369,6 +372,9 @@ def ProcessOptions(options):
options.extra_flags.append("--invoke-weak-callbacks")
options.extra_flags.append("--omit-quit")
+ if options.novfp3:
+ options.extra_flags.append("--noenable-vfp3")
+
if options.msan:
VARIANTS = ["default"]
@@ -590,6 +596,7 @@ def Execute(arch, mode, args, options, suites, workspace):
"tsan": options.tsan,
"msan": options.msan,
"dcheck_always_on": options.dcheck_always_on,
+ "novfp3": options.novfp3,
"byteorder": sys.byteorder,
}
all_tests = []
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698