Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index dc6ff9f7d63c5597afa2b598e388b1e071f163ee..1221a51e019117f7fddf0f8f276ce8c102bee3c0 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", |
@@ -590,6 +593,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 = [] |