MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / assertExists

Method assertExists

test/common.py:1085–1088  ·  view source on GitHub ↗
(self, filename, msg=None)

Source from the content-addressed store, hash-verified

1083 return ret
1084
1085 def assertExists(self, filename, msg=None):
1086 if not msg:
1087 msg = f'Expected file not found: {filename}'
1088 self.assertTrue(os.path.exists(filename), msg)
1089
1090 def assertNotExists(self, filename, msg=None):
1091 if not msg:

Callers 15

buildMethod · 0.95
_build_and_runMethod · 0.95
test_emcc_cachingMethod · 0.80
test_FROZEN_CACHEMethod · 0.80
first_useMethod · 0.80
test_embuilderMethod · 0.80

Calls 1

existsMethod · 0.80