Skip to content

Commit d179ff8

Browse files
committed
Fix tests
1 parent 21d2c2f commit d179ff8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ available tools, run `emsdk list`.
100100
* If a tool/SDK is currently active, a star * will be shown next to it.
101101
* If a tool/SDK is currently active, but the terminal your are calling emsdk
102102
from does not have `PATH` and environment set up to utilize that tool, a star
103-
in parentheses (\*) will be shown next to it. Run `emsdk_env.bat` (Windows) or
104-
`source ./emsdk_env.sh` (Linux and OS X) to set up the environment for the
103+
in parentheses (\*) will be shown next to it. Run `emsdkpy/emsdk_env.bat` (Windows) or
104+
`source emsdkpy/emsdk_env.sh` (Linux and OS X) to set up the environment for the
105105
calling terminal.
106106

107107
### How do I install a tool/SDK version?

test/test.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ set -e
99
# activated.
1010
./emsdk install sdk-upstream-5c776e6a91c0cb8edafca16a652ee1ee48f4f6d2
1111
./emsdk activate sdk-upstream-5c776e6a91c0cb8edafca16a652ee1ee48f4f6d2
12-
source ./emsdk_env.sh
12+
source emsdkpy/emsdk_env.sh
1313
which emcc
1414
emcc -v
1515

1616
# Install an older version of the SDK that requires EM_CACHE to be
1717
# set in the environment, so that we can test it is later removed
1818
./emsdk install sdk-fastcomp-3b8cff670e9233a6623563add831647e8689a86b
1919
./emsdk activate sdk-fastcomp-3b8cff670e9233a6623563add831647e8689a86b
20-
source ./emsdk_env.sh
20+
source emsdkpy/emsdk_env.sh
2121
which emcc
2222
emcc -v
2323
test -n "$EM_CACHE"
@@ -26,7 +26,7 @@ test -n "$EM_CACHE"
2626
# of test.py.
2727
./emsdk install latest
2828
./emsdk activate latest
29-
source ./emsdk_env.sh --build=Release
29+
source emsdkpy/emsdk_env.sh --build=Release
3030
# Test that EM_CACHE was unset
3131
test -z "$EM_CACHE"
3232

0 commit comments

Comments
 (0)