diff options
author | Tooru Fujisawa <arai_a@mac.com> | 2019-02-03 08:21:19 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-02-03 08:21:19 +0100 |
commit | ae4af7b7e598b4fec037254a1fd03ac3495695a4 (patch) | |
tree | 98d5420a48042e47b0d9971d30774b8c82d11486 /js/src/jit-test/tests/debug | |
parent | 90f6b2704658a554a12ed3c37545cb6474fbcf51 (diff) | |
download | UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.gz UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.lz UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.tar.xz UXP-ae4af7b7e598b4fec037254a1fd03ac3495695a4.zip |
Stage 1-4: Update tests
Diffstat (limited to 'js/src/jit-test/tests/debug')
-rw-r--r-- | js/src/jit-test/tests/debug/Script-gc-02.js | 2 | ||||
-rw-r--r-- | js/src/jit-test/tests/debug/Script-gc-03.js | 2 | ||||
-rw-r--r-- | js/src/jit-test/tests/debug/Script-sourceStart-04.js | 4 | ||||
-rw-r--r-- | js/src/jit-test/tests/debug/Source-text-02.js | 1 |
4 files changed, 5 insertions, 4 deletions
diff --git a/js/src/jit-test/tests/debug/Script-gc-02.js b/js/src/jit-test/tests/debug/Script-gc-02.js index 04dd4b220..9689a6ebe 100644 --- a/js/src/jit-test/tests/debug/Script-gc-02.js +++ b/js/src/jit-test/tests/debug/Script-gc-02.js @@ -10,5 +10,5 @@ assertEq(arr.length, 10); gc(); for (var i = 0; i < arr.length; i++) - assertEq(arr[i].lineCount, 3); + assertEq(arr[i].lineCount, 4); diff --git a/js/src/jit-test/tests/debug/Script-gc-03.js b/js/src/jit-test/tests/debug/Script-gc-03.js index 30c3e8dbc..5ecb4556f 100644 --- a/js/src/jit-test/tests/debug/Script-gc-03.js +++ b/js/src/jit-test/tests/debug/Script-gc-03.js @@ -10,6 +10,6 @@ assertEq(arr.length, 100); gc(g); for (var i = 0; i < arr.length; i++) - assertEq(arr[i].lineCount, 3); + assertEq(arr[i].lineCount, 4); gc(); diff --git a/js/src/jit-test/tests/debug/Script-sourceStart-04.js b/js/src/jit-test/tests/debug/Script-sourceStart-04.js index 2aa382b7b..4546818e4 100644 --- a/js/src/jit-test/tests/debug/Script-sourceStart-04.js +++ b/js/src/jit-test/tests/debug/Script-sourceStart-04.js @@ -20,6 +20,6 @@ function test(string, range) { } test("eval('2 * 3')", [0, 5]); -test("new Function('2 * 3')", [0, 12]); -test("new Function('x', 'x * x')", [0, 13]); +test("new Function('2 * 3')", [0, 31]); +test("new Function('x', 'x * x')", [0, 32]); assertEq(count, 6); diff --git a/js/src/jit-test/tests/debug/Source-text-02.js b/js/src/jit-test/tests/debug/Source-text-02.js index 64cfce92a..46e76015e 100644 --- a/js/src/jit-test/tests/debug/Source-text-02.js +++ b/js/src/jit-test/tests/debug/Source-text-02.js @@ -3,6 +3,7 @@ let g = newGlobal(); let dbg = new Debugger(g); +var text; var count = 0; dbg.onNewScript = function (script) { ++count; |