This commit replaces instances of io.js with Node.js, based on the recent convergence. There are some remaining instances of io.js, related to build and the installer. Fixes: https://github.com/nodejs/node/issues/2361 PR-URL: https://github.com/nodejs/node/pull/2367 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: João Reis <reis@janeasystems.com>
38 lines
966 B
Bash
Executable file
38 lines
966 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# always change the working directory to the project's root directory
|
|
cd $(dirname $0)/..
|
|
|
|
# pass a $NODE environment variable from something like Makefile
|
|
# it should point to either ./node or ./node.exe, depending on the platform
|
|
if [ -z $NODE ]; then
|
|
echo "No node executable provided. Bailing." >&2
|
|
exit 0
|
|
fi
|
|
|
|
rm -rf 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 cli.js install --ignore-scripts
|
|
../$NODE cli.js run-script test-legacy
|
|
../$NODE cli.js run-script test
|
|
|
|
# clean up everything one single shot
|
|
cd .. && rm -rf test-npm
|