'regress/regress-3116': [PASS, ['isolates', FLAKY]],
}], # ALWAYS
+['novfp3 == True', {
+ 'asm/embenchen/box2d': [SKIP],
+ 'asm/embenchen/zlib': [SKIP],
+ 'asm/embenchen/memops': [SKIP],
+ 'asm/embenchen/lua_binarytrees': [SKIP],
+}], # novfp3 == True
+
##############################################################################
['gc_stress == True', {
# Skip tests not suitable for GC stress.
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",
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"]
"tsan": options.tsan,
"msan": options.msan,
"dcheck_always_on": options.dcheck_always_on,
+ "novfp3": options.novfp3,
"byteorder": sys.byteorder,
}
all_tests = []