OLD | NEW |
1 # Copyright 2014 the V8 project authors. All rights reserved. | 1 # Copyright 2014 the V8 project authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import os | 5 import os |
6 | 6 |
7 from testrunner.local import commands | 7 from testrunner.local import commands |
8 from testrunner.local import testsuite | 8 from testrunner.local import testsuite |
9 from testrunner.local import utils | 9 from testrunner.local import utils |
10 from testrunner.objects import testcase | 10 from testrunner.objects import testcase |
(...skipping 13 matching lines...) Expand all Loading... |
24 "try { var natives = %ListNatives();" | 24 "try { var natives = %ListNatives();" |
25 " for (var n in natives) { print(natives[n]); }" | 25 " for (var n in natives) { print(natives[n]); }" |
26 "} catch(e) {}"] + | 26 "} catch(e) {}"] + |
27 context.extra_flags) | 27 context.extra_flags) |
28 if output.exit_code != 0: | 28 if output.exit_code != 0: |
29 print output.stdout | 29 print output.stdout |
30 print output.stderr | 30 print output.stderr |
31 assert False, "Failed to get natives list." | 31 assert False, "Failed to get natives list." |
32 tests = [] | 32 tests = [] |
33 for line in output.stdout.strip().split(): | 33 for line in output.stdout.strip().split(): |
34 (name, argc) = line.split(",") | 34 try: |
35 flags = ["--allow-natives-syntax", | 35 (name, argc) = line.split(",") |
36 "-e", "var NAME = '%s', ARGC = %s;" % (name, argc)] | 36 flags = ["--allow-natives-syntax", |
37 test = testcase.TestCase(self, name, flags) | 37 "-e", "var NAME = '%s', ARGC = %s;" % (name, argc)] |
38 tests.append(test) | 38 test = testcase.TestCase(self, name, flags) |
| 39 tests.append(test) |
| 40 except: |
| 41 # Work-around: If parsing didn't work, it might have been due to output |
| 42 # caused by other d8 flags. |
| 43 pass |
39 return tests | 44 return tests |
40 | 45 |
41 def GetFlagsForTestCase(self, testcase, context): | 46 def GetFlagsForTestCase(self, testcase, context): |
42 name = testcase.path | 47 name = testcase.path |
43 basefile = os.path.join(self.root, "base.js") | 48 basefile = os.path.join(self.root, "base.js") |
44 return testcase.flags + [basefile] + context.mode_flags | 49 return testcase.flags + [basefile] + context.mode_flags |
45 | 50 |
46 def GetSuite(name, root): | 51 def GetSuite(name, root): |
47 return FuzzNativesTestSuite(name, root) | 52 return FuzzNativesTestSuite(name, root) |
OLD | NEW |