(self)
| 117 | self.check_build('_test_c11_cext', std='c11') |
| 118 | |
| 119 | def test_build_abi3t(self): |
| 120 | # Test with Py_TARGET_ABI3T |
| 121 | self.check_build('_test_abi3t', abi3t=True) |
| 122 | |
| 123 | @unittest.skipIf(support.MS_WINDOWS, "MSVC doesn't support /std:c99") |
| 124 | def test_build_c99(self): |
nothing calls this directly
no test coverage detected