(self)
| 5753 | |
| 5754 | class browser64_4gb(browser): |
| 5755 | def setUp(self): |
| 5756 | super().setUp() |
| 5757 | self.cflags += ['-m64'] |
| 5758 | self.set_setting('INITIAL_MEMORY', '4200mb') |
| 5759 | self.set_setting('GLOBAL_BASE', '4gb') |
| 5760 | # Without this we get a warning about GLOBAL_BASE being ignored when used with SIDE_MODULE |
| 5761 | self.cflags.append('-Wno-unused-command-line-argument') |
| 5762 | self.require_wasm64() |
| 5763 | |
| 5764 | |
| 5765 | class browser64_2gb(browser): |
nothing calls this directly
no test coverage detected