(self)
| 3277 | @requires_scons |
| 3278 | @with_env_modify({'EMSCRIPTEN_ROOT': path_from_root()}) |
| 3279 | def test_scons(self): |
| 3280 | # this test copies the site_scons directory alongside the test |
| 3281 | copytree(test_file('scons/simple'), '.') |
| 3282 | copytree(path_from_root('tools/scons/site_scons'), 'site_scons') |
| 3283 | self.run_process(['scons']) |
| 3284 | output = self.run_js('scons_integration.js', assert_returncode=5) |
| 3285 | self.assertContained('If you see this - the world is all right!', output) |
| 3286 | |
| 3287 | @requires_scons |
| 3288 | @with_env_modify({ |
nothing calls this directly
no test coverage detected