From 58aad76461c9ed2a9a1c9ce3427f8eae0ee73d63 Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Wed, 26 Jun 2019 12:45:51 -0700 Subject: [PATCH] fix old tests (#283) The tests for older versions had some copy-paste stuff, that meant we didn't fully test activating them. --- test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.py b/test.py index 672f964..d24825b 100644 --- a/test.py +++ b/test.py @@ -74,11 +74,11 @@ check_call('fastcomp/emscripten/emcc hello_world.cpp') print('test specific release (old)') check_call('./emsdk install sdk-1.38.31-64bit') -check_call('./emsdk activate tot-fastcomp') +check_call('./emsdk activate sdk-1.38.31-64bit') print('test specific release (new, short name)') check_call('./emsdk install 1.38.33') -check_call('./emsdk activate tot-fastcomp') +check_call('./emsdk activate 1.38.33') assert 'fastcomp' in open(os.path.expanduser('~/.emscripten')).read() assert 'upstream' not in open(os.path.expanduser('~/.emscripten')).read()