Upstream version 9.38.207.0
[platform/framework/web/crosswalk.git] / src / v8 / test / fuzz-natives / testcfg.py
index 5e00b40..973908b 100644 (file)
@@ -20,7 +20,7 @@ class FuzzNativesTestSuite(testsuite.TestSuite):
       shell += ".exe"
     output = commands.Execute(
         context.command_prefix +
-        [shell, "--allow-natives-syntax", "-e",
+        [shell, "--allow-natives-syntax", "--simd-object", "-e",
          "try { var natives = %ListNatives();"
          "  for (var n in natives) { print(natives[n]); }"
          "} catch(e) {}"] +
@@ -33,7 +33,7 @@ class FuzzNativesTestSuite(testsuite.TestSuite):
     for line in output.stdout.strip().split():
       try:
         (name, argc) = line.split(",")
-        flags = ["--allow-natives-syntax",
+        flags = ["--allow-natives-syntax", "--simd-object",
                  "-e", "var NAME = '%s', ARGC = %s;" % (name, argc)]
         test = testcase.TestCase(self, name, flags)
         tests.append(test)