Skip to content

Commit c7859a2

Browse files
committed
[Tests] fix stack differences on node 0.8
1 parent 9302682 commit c7859a2

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

test/common.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ module.exports.getDiag = function (body) {
2222
// placeholder $TEST variable.
2323
// 2) Line positions within the file might change. We handle this by replacing
2424
// line and column markers with placeholder $LINE and $COL "variables"
25+
// a) node 0.8 does not provide nested eval line numbers, so we remove them
2526
// 3) Stacks themselves change frequently with refactoring. We've even run into
2627
// issues with node library refactorings "breaking" stack traces. Most of
2728
// these changes are irrelevant to the tests themselves. To counter this, we
@@ -35,7 +36,8 @@ module.exports.stripFullStack = function (output) {
3536
var stripChangingData = function (line) {
3637
var withoutDirectory = line.replace(__dirname, '$TEST');
3738
var withoutLineNumbers = withoutDirectory.replace(/:\d+:\d+/g, ':$LINE:$COL');
38-
return withoutLineNumbers;
39+
var withoutNestedLineNumbers = withoutLineNumbers.replace(/, \<anonymous\>:\$LINE:\$COL\)$/, ')');
40+
return withoutNestedLineNumbers;
3941
}
4042

4143
if (m) {

test/exit.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ tap.test('exit fail', function (t) {
5656
' Error: should be equivalent',
5757
' [... stack stripped ...]',
5858
' at $TEST/exit/fail.js:$LINE:$COL',
59-
' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
60-
' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
59+
' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL))',
60+
' at eval (eval at <anonymous> ($TEST/exit/fail.js:$LINE:$COL))',
6161
' at Test.<anonymous> ($TEST/exit/fail.js:$LINE:$COL)',
6262
' [... stack stripped ...]',
6363
' ...',

test/fail.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ tap.test('array test', function (tt) {
2626
' Error: should be equivalent',
2727
' [... stack stripped ...]',
2828
' at $TEST/fail.js:$LINE:$COL',
29-
' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
30-
' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
29+
' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL))',
30+
' at eval (eval at <anonymous> ($TEST/fail.js:$LINE:$COL))',
3131
' at Test.<anonymous> ($TEST/fail.js:$LINE:$COL)',
3232
' [... stack stripped ...]',
3333
' ...',

test/too_many.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ tap.test('array test', function (tt) {
2626
' Error: plan != count',
2727
' [... stack stripped ...]',
2828
' at $TEST/too_many.js:$LINE:$COL',
29-
' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
30-
' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL), <anonymous>:$LINE:$COL)',
29+
' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL))',
30+
' at eval (eval at <anonymous> ($TEST/too_many.js:$LINE:$COL))',
3131
' at Test.<anonymous> ($TEST/too_many.js:$LINE:$COL)',
3232
' [... stack stripped ...]',
3333
' ...',

0 commit comments

Comments
 (0)