Test that webassembly is mocked out when comparing with jitless.
(self)
| 614 | 'failure_output_second.txt', cut_verbose_output(e.output, 3)) |
| 615 | |
| 616 | def testJitless(self): |
| 617 | """Test that webassembly is mocked out when comparing with jitless.""" |
| 618 | stdout = run_foozzie( |
| 619 | 'build1', second_config='jitless') |
| 620 | lines = stdout.split('\n') |
| 621 | # TODO(machenbach): Don't depend on the command-lines being printed in |
| 622 | # particular lines. |
| 623 | self.assertIn('v8_mock_webassembly.js', lines[1]) |
| 624 | self.assertIn('v8_mock_webassembly.js', lines[3]) |
| 625 | |
| 626 | def testJitlessAndWasmStruct_FlagPassed(self): |
| 627 | """We keep passing the --jitless flag when no content rule matches. |
nothing calls this directly
no test coverage detected