bugfix: allow to install SDK binaries alone (#834)

This commit is contained in:
Yulong Wang
2021-06-08 10:57:29 -07:00
committed by GitHub
parent 57b8067188
commit 9fca4702ac
2 changed files with 7 additions and 2 deletions

View File

@@ -258,6 +258,10 @@ int main() {
# Check that its not re-downloaded
checked_call_with_output(emsdk + ' install 5c776e6a91c0cb8edafca16a652ee1ee48f4f6d2', expected='Skipped', unexpected='Downloading:')
def test_install_tool(self):
# Test that its possible to install emscripten as tool instead of SDK
checked_call_with_output(emsdk + ' install releases-upstream-77b065ace39e6ab21446e13f92897f956c80476a', unexpected='Installing SDK')
if __name__ == '__main__':
unittest.main(verbosity=2)