Index: test/cctest/testcfg.py |
diff --git a/test/cctest/testcfg.py b/test/cctest/testcfg.py |
index d28ef7d0044d48abd87864f64b7730d2e47731fb..06fe86889a0186e5e0b67f90995f0e3c95d125d4 100644 |
--- a/test/cctest/testcfg.py |
+++ b/test/cctest/testcfg.py |
@@ -65,16 +65,7 @@ class CcTestSuite(testsuite.TestSuite): |
return [] |
tests = [] |
for test_desc in output.stdout.strip().split(): |
- if test_desc.find('<') < 0: |
- # Native Client output can contain a few non-test arguments |
- # before the tests. Skip these. |
- continue |
- raw_test, dependency = test_desc.split('<') |
- if dependency != '': |
- dependency = raw_test.split('/')[0] + '/' + dependency |
- else: |
- dependency = None |
- test = testcase.TestCase(self, raw_test, dependency=dependency) |
+ test = testcase.TestCase(self, test_desc) |
tests.append(test) |
tests.sort() |
return tests |