Index: test/mjsunit/regress/regress-crbug-490680.js |
diff --git a/test/mjsunit/regress/regress-444805.js b/test/mjsunit/regress/regress-crbug-490680.js |
similarity index 64% |
copy from test/mjsunit/regress/regress-444805.js |
copy to test/mjsunit/regress/regress-crbug-490680.js |
index 5a533acd5ebf2fc196373e2b0e2c4b9df0a29ab6..e0b5572c669b971f5851b99deb3be82d01c1e1d6 100644 |
--- a/test/mjsunit/regress/regress-444805.js |
+++ b/test/mjsunit/regress/regress-crbug-490680.js |
@@ -2,7 +2,11 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+var sentinel = null; |
+ |
try { |
- load("test/mjsunit/regress/regress-444805.js-script"); |
+ throw { toString: function() { sentinel = "observed"; } }; |
} catch (e) { |
} |
Michael Starzinger
2015/05/22 16:18:39
Can we also add the following construct to the tes
|
+ |
+assertNull(sentinel); |