| Index: test/mjsunit/regress/regress-340125.js
|
| diff --git a/test/lexer/cornercases/end-inside-string.js b/test/mjsunit/regress/regress-340125.js
|
| similarity index 89%
|
| copy from test/lexer/cornercases/end-inside-string.js
|
| copy to test/mjsunit/regress/regress-340125.js
|
| index de9b2f797bbdc7cd2b6dd4078498996371f36bfc..a3e40a8d5ac4cc381dd70f83e32914ddbbc972f1 100644
|
| --- a/test/lexer/cornercases/end-inside-string.js
|
| +++ b/test/mjsunit/regress/regress-340125.js
|
| @@ -1,4 +1,4 @@
|
| -// Copyright 2013 the V8 project authors. All rights reserved.
|
| +// Copyright 2014 the V8 project authors. All rights reserved.
|
| // Redistribution and use in source and binary forms, with or without
|
| // modification, are permitted provided that the following conditions are
|
| // met:
|
| @@ -24,5 +24,7 @@
|
| // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
| // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| -
|
| -var description = "this file ends inside a string -- that can't be good!
|
| +//
|
| +var a = new Int8Array(2);
|
| +var b = a.subarray(2, 4);
|
| +assertThrows(function () { a.set(b, 1e10); }, RangeError);
|
|
|