forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: refactor
make test-npm
into test-npm.sh
Extracts test-npm from Makefile and puts it in tools/test-npm.sh Also improves test-npm to use a separate copy of deps/npm for testing. PR-URL: nodejs#1662 Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: Evan Lucas <[email protected]>
- Loading branch information
1 parent
69bc061
commit 3416e93
Showing
2 changed files
with
38 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# always change the working directory to the project's root directory | ||
cd $(dirname $0)/.. | ||
|
||
# pass NODE_EXE from something like Makefile | ||
# it should point to either {./}node or {./}node.exe, depending on the platform | ||
if [ -z $NODE_EXE ]; then | ||
echo "No node executable provided. Bailing." >&2 | ||
exit 0 | ||
fi | ||
|
||
rm -rf test-npm | ||
mkdir test-npm | ||
|
||
# make a copy of deps/npm to run the tests on | ||
cp -r deps/npm/ test-npm/ | ||
|
||
cd test-npm | ||
|
||
# do a rm first just in case deps/npm contained these | ||
rm -rf npm-cache npm-tmp npm-prefix | ||
mkdir npm-cache npm-tmp npm-prefix | ||
|
||
# set some npm env varibles to point to our new temporary folders | ||
export npm_config_cache="npm-cache" | ||
export npm_config_prefix="npm-prefix" | ||
export npm_config_tmp="npm-tmp" | ||
|
||
# install npm devDependencies and run npm's tests | ||
../$NODE_EXE cli.js install --ignore-scripts | ||
../$NODE_EXE cli.js run-script test-all | ||
|
||
# clean up everything one single shot | ||
cd .. && rm -rf test-npm |