(self)
| 198 | pass |
| 199 | |
| 200 | def test_all(self): |
| 201 | # Read in all information in the ALL block |
| 202 | tsi = self.c_default |
| 203 | assert_equal(tsi.get_lib_dirs(), [self._dir1, self._dir2]) |
| 204 | assert_equal(tsi.get_libraries(), [self._lib1, self._lib2]) |
| 205 | assert_equal(tsi.get_runtime_lib_dirs(), [self._dir1]) |
| 206 | extra = tsi.calc_extra_info() |
| 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 |
nothing calls this directly
no test coverage detected