(self)
| 207 | assert_equal(extra['extra_compile_args'], ['-I/fake/directory', '-I/path with/spaces', '-Os']) |
| 208 | |
| 209 | def test_temp1(self): |
| 210 | # Read in all information in the temp1 block |
| 211 | tsi = self.c_temp1 |
| 212 | assert_equal(tsi.get_lib_dirs(), [self._dir1]) |
| 213 | assert_equal(tsi.get_libraries(), [self._lib1]) |
| 214 | assert_equal(tsi.get_runtime_lib_dirs(), [self._dir1]) |
| 215 | |
| 216 | def test_temp2(self): |
| 217 | # Read in all information in the temp2 block |
nothing calls this directly
no test coverage detected