Skip to content
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

Ever since 3.0.0 running mocha tests in my project crashes on startup with an error 0xC0000005 #2697

Closed
capaj opened this issue Sep 4, 2015 · 5 comments

Comments

@capaj
Copy link

capaj commented Sep 4, 2015

This is running on windows 10 64-bit, I will try on Ubuntu as well. I have reproduced so far on two machines with io.js versions 3.2.0 and 3.3.0.
Node.js 12.7 works fine. IO.js 2.5.0 works fine. Any newer version just fails.

Googling makes me think, this is a possible race condition-the process finished with exit code -1073741819 (0xC0000005).

Reproduce: clone https://github.com/capaj/Moonridge.git and npm i, and finally mocha. Then the crash should occur.

@ChALkeR ChALkeR added the windows Issues and PRs related to the Windows platform. label Sep 5, 2015
@capaj
Copy link
Author

capaj commented Sep 5, 2015

Also fails with latest node 4.0.0-rc.1

@targos
Copy link
Member

targos commented Sep 5, 2015

Do you have any idea about what part of your test suite is making it crash?
I briefly tried to run it on my mac but couldn't because I don't have MongoDB.

@rvagg
Copy link
Member

rvagg commented Sep 5, 2015

> [email protected] test /home/rvagg/Moonridge
> mocha

module.js:338
    throw err;
    ^

Error: Cannot find module '../../Moonridge-client/moonridge-client'
    at Function.Module._resolveFilename (module.js:336:15)
    at Function.Module._load (module.js:286:25)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (/home/rvagg/Moonridge/test/utils/run_server_client.js:5:11)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (/home/rvagg/Moonridge/test/basic-CRUD.spec.js:3:14)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at /home/rvagg/Moonridge/node_modules/mocha/lib/mocha.js:216:27
    at Array.forEach (native)
    at Mocha.loadFiles (/home/rvagg/Moonridge/node_modules/mocha/lib/mocha.js:213:14)
    at Mocha.run (/home/rvagg/Moonridge/node_modules/mocha/lib/mocha.js:453:10)
    at Object.<anonymous> (/home/rvagg/Moonridge/node_modules/mocha/bin/_mocha:401:18)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Function.Module.runMain (module.js:475:10)
    at startup (node.js:117:18)
    at node.js:951:3
npm ERR! Test failed.  See above for more details.
rvagg@rvagg:~/Moonridge$ module.js:338
    throw err;
    ^

Error: Cannot find module './Moonridge-client/moonridge/moonridge-method-validations'
    at Function.Module._resolveFilename (module.js:336:15)
    at Function.Module._load (module.js:286:25)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)
    at Object.<anonymous> (/home/rvagg/Moonridge/query-builder.js:2:33)
    at Module._compile (module.js:434:26)
    at Object.Module._extensions..js (module.js:452:10)
    at Module.load (module.js:355:32)
    at Function.Module._load (module.js:310:12)
    at Module.require (module.js:365:17)
    at require (module.js:384:17)

wut?

also, it doesn't cleanly npm install because there are addons in the dependency tree that need to be updated for v3+ which is probably why it's not set up properly

@capaj if you rm -rf node_modules and npm install how far do you get? seems to be that this is all about not having dependencies that are compatible.

@capaj
Copy link
Author

capaj commented Sep 5, 2015

@rvagg yes, npm 3 gets stuck on downloading a git submodule. Is this not supported anymore by NPM?

Specifically the last npm command when running npm i --verbose is:

npm verb resolveHead git+https://github.com/capaj/socket.io-rpc-event-handlers.g
it resolved Git URL: git+https://github.com/capaj/socket.io-rpc-event-handlers.g
it#3bd44bbe6b6606cfaed9686542663a1d300d0e86

@ChALkeR ChALkeR removed the windows Issues and PRs related to the Windows platform. label Sep 5, 2015
@capaj
Copy link
Author

capaj commented Sep 5, 2015

@rvagg oh there was a git submodule I forgot to mention. So you would have to do a recursive clone.

Also I have tried from a scratch on my windows machine with npm 3.3.2 and Node 4.0.0-rc.1 and it works. Tests run as before. @targos I guess this was some problem with my npm dependencies. Glad it is resolved now.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants