Skip to content

Commit

Permalink
test: move more tests from sequential to parallel
Browse files Browse the repository at this point in the history
Only `test-stdin-from-file.js` has been modified so that the `stdin.txt`
is written in a temp directory instead of the `fixtures` directory.

PR-URL: #6187
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
santigimeno authored and jasnell committed Apr 26, 2016
1 parent aa395b7 commit de4dc31
Show file tree
Hide file tree
Showing 19 changed files with 3 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var childProcess = require('child_process');
var fs = require('fs');

var stdoutScript = join(common.fixturesDir, 'echo-close-check.js');
var tmpFile = join(common.fixturesDir, 'stdin.txt');
var tmpFile = join(common.tmpDir, 'stdin.txt');

var cmd = '"' + process.argv[0] + '" "' + stdoutScript + '" < "' +
tmpFile + '"';
Expand All @@ -24,6 +24,8 @@ var string = 'abc\nΓΌmlaut.\nsomething else\n' +
'ζœ‰ζ•ˆηš„ζ”Ήε–„δΊ†ε²­ε—εœ°εŒΊθ½εŽηš„ζ”Ώζ²»γ€##ζ΅ŽηŽ°ηŠΆγ€‚\n';


common.refreshTmpDir();

console.log(cmd + '\n\n');

try {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit de4dc31

Please sign in to comment.