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 import shutil | 6 import shutil |
7 | 7 |
8 from testrunner.local import commands | 8 from testrunner.local import commands |
9 from testrunner.local import testsuite | 9 from testrunner.local import testsuite |
10 from testrunner.local import utils | 10 from testrunner.local import utils |
(...skipping 10 matching lines...) Expand all Loading... |
21 shell += ".exe" | 21 shell += ".exe" |
22 output = commands.Execute(context.command_prefix + | 22 output = commands.Execute(context.command_prefix + |
23 [shell, "--gtest_list_tests"] + | 23 [shell, "--gtest_list_tests"] + |
24 context.extra_flags) | 24 context.extra_flags) |
25 if output.exit_code != 0: | 25 if output.exit_code != 0: |
26 print output.stdout | 26 print output.stdout |
27 print output.stderr | 27 print output.stderr |
28 return [] | 28 return [] |
29 tests = [] | 29 tests = [] |
30 test_case = '' | 30 test_case = '' |
31 for test_desc in output.stdout.strip().split(): | 31 for line in output.stdout.splitlines(): |
| 32 test_desc = line.strip().split()[0] |
32 if test_desc.endswith('.'): | 33 if test_desc.endswith('.'): |
33 test_case = test_desc | 34 test_case = test_desc |
34 else: | 35 elif test_case and test_desc: |
35 test = testcase.TestCase(self, test_case + test_desc, dependency=None) | 36 test = testcase.TestCase(self, test_case + test_desc, dependency=None) |
36 tests.append(test) | 37 tests.append(test) |
37 tests.sort() | 38 tests.sort() |
38 return tests | 39 return tests |
39 | 40 |
40 def GetFlagsForTestCase(self, testcase, context): | 41 def GetFlagsForTestCase(self, testcase, context): |
41 return (testcase.flags + ["--gtest_filter=" + testcase.path] + | 42 return (testcase.flags + ["--gtest_filter=" + testcase.path] + |
42 ["--gtest_random_seed=%s" % context.random_seed] + | 43 ["--gtest_random_seed=%s" % context.random_seed] + |
43 ["--gtest_print_time=0"] + | 44 ["--gtest_print_time=0"] + |
44 context.mode_flags) | 45 context.mode_flags) |
45 | 46 |
46 def shell(self): | 47 def shell(self): |
47 return "heap-unittests" | 48 return "heap-unittests" |
48 | 49 |
49 | 50 |
50 def GetSuite(name, root): | 51 def GetSuite(name, root): |
51 return HeapUnitTestsSuite(name, root) | 52 return HeapUnitTestsSuite(name, root) |
OLD | NEW |