Browse Source

win: make test-cli-eval.js pass

Bert Belder 13 years ago
parent
commit
10e7c52a70
  1. 17
      test/simple/test-cli-eval.js

17
test/simple/test-cli-eval.js

@ -19,13 +19,14 @@
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
// USE OR OTHER DEALINGS IN THE SOFTWARE. // USE OR OTHER DEALINGS IN THE SOFTWARE.
// libuv-broken var common = require('../common.js'),
assert = require('assert'),
child = require('child_process'),
nodejs = '"' + process.execPath + '"';
// replace \ by / because windows uses backslashes in paths, but they're still
assert = require('assert'); // interpreted as the escape character when put between quotes.
child = require('child_process'); var filename = __filename.replace(/\\/g, '/');
nodejs = '"' + process.execPath + '"';
if (module.parent) { if (module.parent) {
// signal we've been loaded as a module // signal we've been loaded as a module
@ -40,13 +41,13 @@ child.exec(nodejs + ' --eval 42',
}); });
// assert that "42\n" is written to stderr // assert that "42\n" is written to stderr
child.exec(nodejs + ' --eval \'console.error(42)\'', child.exec(nodejs + ' --eval "console.error(42)"',
function(err, stdout, stderr) { function(err, stdout, stderr) {
assert.equal(stderr, "42\n"); assert.equal(stderr, "42\n");
}); });
// assert that module loading works // assert that module loading works
child.exec(nodejs + ' --eval "require(\'' + __filename + '\')"', child.exec(nodejs + ' --eval "require(\'' + filename + '\')"',
function(status, stdout, stderr) { function(status, stdout, stderr) {
assert.equal(status.code, 42); assert.equal(status.code, 42);
}); });

Loading…
Cancel
Save