()
| 46 | |
| 47 | |
| 48 | def get_tests(): |
| 49 | # For now, we don't require the submodule to exist. In this case we |
| 50 | # just report no tests |
| 51 | test_root = os.path.join(testsuite_root, 'conformance', 'interfaces') |
| 52 | if not os.path.exists(test_root): |
| 53 | print('posixtestsuite not found (run git submodule update --init?)') |
| 54 | return [] |
| 55 | tests = filter_tests(os.listdir(test_root)) |
| 56 | tests = [os.path.join(test_root, t) for t in tests] |
| 57 | return tests |
| 58 | |
| 59 | |
| 60 | # Mark certain tests as unsupported |
no test coverage detected