-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test failure #708
Comments
What's your |
Yes, my NVM_DIR is ~/.nvm, but this is a separate clone. When I ran it the test suite in ~/.nvm, it messed up my installed Node versions (think they got moved into |
No, still same three errors (in separate clone). Is there a way I can provide more detailed debug info? |
Adding these 2 debug statements ... diff --git "a/test/fast/Listing versions/Running \"nvm ls system\" should include \"system\" when appropriate" "b/test/fast/Listing versions/Running \"nvm ls system\" should include \"system\" when appropriate"
index f1e5ef6..24a3a79 100755
--- "a/test/fast/Listing versions/Running \"nvm ls system\" should include \"system\" when appropriate"
+++ "b/test/fast/Listing versions/Running \"nvm ls system\" should include \"system\" when appropriate"
@@ -12,10 +12,12 @@ mkdir -p ../../../v0.3.3
mkdir -p ../../../v0.3.9
nvm_has_system_node() { return 0; }
+nvm ls system >&2
nvm ls system | grep system 2>&1 > /dev/null
[ $? -eq 0 ] || die '"nvm ls system" did not contain "system" when system node is present'
nvm_has_system_node() { return 1; }
+nvm ls system >&2
nvm ls system | grep system 2>&1 > /dev/null
[ $? -ne 0 ] || die '"nvm ls system" contained "system" when system node is not present'
... I get ...
|
With my regular nvm (outside the test suite, on master), I get
|
Thanks, I'll keep looking :-) |
On master,
npm run test/fast
fails for me:I do have a system Node at
/usr/bin/nodejs
[sic], but no system-widenode
(withoutjs
suffix); running Ubuntu 14.04.2.The text was updated successfully, but these errors were encountered: