From 5ce9712be0ea1bb779d638ca515c126379c5df25 Mon Sep 17 00:00:00 2001 From: Brian Terlson Date: Wed, 13 May 2015 18:52:01 -0700 Subject: [PATCH] Python harness: run tests in both modes by default --- tools/packaging/test262.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py index b9172b0672..ed8939e00a 100755 --- a/tools/packaging/test262.py +++ b/tools/packaging/test262.py @@ -66,9 +66,7 @@ def BuildOptions(): help="Test only strict mode") result.add_option("--non_strict_only", default=False, action="store_true", help="Test only non-strict mode") - # TODO: Once enough tests are made strict compat, change the default - # to "both" - result.add_option("--unmarked_default", default="non_strict", + result.add_option("--unmarked_default", default="both", help="default mode for tests of unspecified strictness") result.add_option("--logname", help="Filename to save stdout to") result.add_option("--junitname", help="Filename to save test results in JUnit XML format")