You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a workaround, reverting the line process.exit(status); back to throw new ExitStatus(status); lets the tests pass. I'm looking for a better workaround now.
The text was updated successfully, but these errors were encountered:
Further testing makes it look like that this is not actually an issue in python, but a node.js issue nodejs/node-v0.x-archive#1669 , which I see @kripken has commented on before as well.
juj
changed the title
Several tests fail on Windows due to a Python bug.
Several tests fail on Windows due to a node.js bug.
Jul 27, 2014
… fix other.test_warn_undefined on Windows. The end of the output buffer would not get printed during the test, which would cause the test to fail. See also #2582
The underlying issue is now reported fresh at nodejs/node-v0.x-archive#8329 , since it still occurs and the previous reports of this in node.js repo have either been closed or are a bit different.
After the commit 14544cf , several tests began to fail on Windows: http://clb.demon.fi:8112/builders/win-incoming/builds/257/steps/Tests-other/logs/stdio
The affected tests:
The cause of the failure was reduced to a Python bug, which I reported here: http://bugs.python.org/issue22066
As a workaround, reverting the line
process.exit(status);
back tothrow new ExitStatus(status);
lets the tests pass. I'm looking for a better workaround now.The text was updated successfully, but these errors were encountered: