Skip to content

Commit

Permalink
v8: *test* segmentation faults related to IntegerValue (nodejs#2721)
Browse files Browse the repository at this point in the history
Should be fixed deps/v8/src/api.cc
Workaround solution will be the next commit
  • Loading branch information
pmq20 authored and Christopher J. Brody committed Sep 7, 2015
1 parent 6efb697 commit 6d34031
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/parallel/test-child-process-stdio.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ assert.equal(child.stderr, null);
options = {stdio: 'ignore'};
child = common.spawnSyncCat(options);
assert.deepEqual(options, {stdio: 'ignore'});

// This should never cause segmentation faults
// cf. https://github.com/nodejs/node/issues/2721
options = {stdio: [process.stdin, process.stdout, process.stderr]};
child = common.spawnPwd(options);

0 comments on commit 6d34031

Please sign in to comment.