(self)
| 6477 | @no_asan('depends on the specifics of memory size, which for asan we are forced to increase') |
| 6478 | @no_lsan('depends on the specifics of memory size, which for lsan we are forced to increase') |
| 6479 | def test_dlmalloc_inline(self): |
| 6480 | # needed with typed arrays |
| 6481 | if not self.has_changed_setting('INITIAL_MEMORY'): |
| 6482 | self.set_setting('INITIAL_MEMORY', '128mb') |
| 6483 | |
| 6484 | src = read_file(path_from_root('system/lib/dlmalloc.c')) + '\n\n\n' + read_file(test_file('dlmalloc_test.c')) |
| 6485 | self.do_run(src, '*1,0*', args=['200', '1'], force_c=True) |
| 6486 | self.do_run(self.output_name('src'), '*400,0*', args=['400', '400'], force_c=True, no_build=True) |
| 6487 | |
| 6488 | @no_asan('depends on the specifics of memory size, which for asan we are forced to increase') |
| 6489 | @no_lsan('depends on the specifics of memory size, which for lsan we are forced to increase') |
nothing calls this directly
no test coverage detected