Lines Matching refs:stderr
32 return exec(cmd, (err, stdout, stderr) => {
37 assert.ok(stderr.split('\n').length);
40 callback(err, stdout, stderr);
48 errExec('throws_error.js', common.mustCall((err, stdout, stderr) => {
49 assert.match(stderr, /blah/);
54 errExec('throws_error2.js', common.mustCall((err, stdout, stderr) => {
55 assert.match(stderr, syntaxErrorMessage);
60 errExec('throws_error3.js', common.mustCall((err, stdout, stderr) => {
61 assert.match(stderr, syntaxErrorMessage);
66 errExec('throws_error4.js', common.mustCall((err, stdout, stderr) => {
67 assert.match(stderr, syntaxErrorMessage);
71 errExec('throws_error5.js', common.mustCall((err, stdout, stderr) => {
72 assert.match(stderr, syntaxErrorMessage);
76 errExec('throws_error6.js', common.mustCall((err, stdout, stderr) => {
77 assert.match(stderr, syntaxErrorMessage);
81 errExec('throws_error7.js', common.mustCall((err, stdout, stderr) => {
82 assert.match(stderr, /throw {\r?\n\^\r?\n{ toString: \[Function: toString] }\r?\n\r?\nNode\.js \S+\r?\n$/);
86 errExec('throws_error7.js', '--enable-source-maps', common.mustCall((err, stdout, stderr) => {
87 assert.match(stderr, /throw {\r?\n\^\r?\n{ toString: \[Function: toString] }\r?\n\r?\nNode\.js \S+\r?\n$/);