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 = [] |