aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorlagergren <none@none>2013-11-18 16:35:39 +0100
committerlagergren <none@none>2013-11-18 16:35:39 +0100
commit9dedc388106e53f4dc39989369bf496ded63d378 (patch)
treeeecb116ac5180da9c7c426b82b0f9a05df6cc453 /test
parent7bbda0ea1a878c391f767c1e851db8e4c24f020e (diff)
downloadnashorn-9dedc388106e53f4dc39989369bf496ded63d378.tar.gz
8028434: Line number nodes were off for while nodes and do while nodes - the line number of a loop node should be treated as the location of the test expression
Reviewed-by: jlaskey, sundar
Diffstat (limited to 'test')
-rw-r--r--test/script/basic/JDK-8028434.js58
-rw-r--r--test/script/basic/JDK-8028434.js.EXPECTED1
2 files changed, 59 insertions, 0 deletions
diff --git a/test/script/basic/JDK-8028434.js b/test/script/basic/JDK-8028434.js
new file mode 100644
index 00000000..81f9e02a
--- /dev/null
+++ b/test/script/basic/JDK-8028434.js
@@ -0,0 +1,58 @@
+/*
+ * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * This code is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License version 2 only, as
+ * published by the Free Software Foundation.
+ *
+ * This code is distributed in the hope that it will be useful, but WITHOUT
+ * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * version 2 for more details (a copy is included in the LICENSE file that
+ * accompanied this code).
+ *
+ * You should have received a copy of the GNU General Public License version
+ * 2 along with this work; if not, write to the Free Software Foundation,
+ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+ *
+ * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
+ * or visit www.oracle.com if you need additional information or have any
+ * questions.
+ */
+
+/**
+ * JDK-8028434: Check that the line number of the tests in while and do while loops
+ * is correct. It needs to correspond to the line with the test expression.
+ *
+ * @test
+ * @run
+ */
+
+try {
+ while (test.apa < 0) {
+ print("x");
+ }
+} catch (e) {
+ var st = e.getStackTrace();
+ if (st.length != 1) {
+ print("erroneous stacktrace length " + s.length);
+ }
+ if (st[0].lineNumber !== 32) {
+ print("erroneous stacktrace element, lineNumber=" + st[0].lineNumber + " elem=" + st);
+ }
+}
+
+try {
+ do {
+ print("x");
+ } while (test.apa < 0);
+} catch (e) {
+ var st = e.getStackTrace();
+ if (st.length != 1) {
+ print("erroneous stacktrace length " + s.length);
+ }
+ if (st[0].lineNumber !== 48) {
+ print("erroneous stacktrace element, lineNumber= " + st[0].lineNumber + " elem=" + st);
+ }
+}
diff --git a/test/script/basic/JDK-8028434.js.EXPECTED b/test/script/basic/JDK-8028434.js.EXPECTED
new file mode 100644
index 00000000..587be6b4
--- /dev/null
+++ b/test/script/basic/JDK-8028434.js.EXPECTED
@@ -0,0 +1 @@
+x