summaryrefslogtreecommitdiff
path: root/test/language/statements/throw/S12.13_A2_T4.js
diff options
context:
space:
mode:
authorBrian Terlson <brian.terlson@microsoft.com>2014-12-05 15:50:00 -0800
committerBrian Terlson <brian.terlson@microsoft.com>2014-12-07 15:33:09 -0800
commit2a74f0ec1b671f15fc7df3e1e294a65abc8ebac8 (patch)
tree7315f60ffd86513bf163c05e4252fab0810bfbe8 /test/language/statements/throw/S12.13_A2_T4.js
parentda465e7399bcecd3c78fa1f5e898c9d52b4c7096 (diff)
downloadqtdeclarative-testsuites-2a74f0ec1b671f15fc7df3e1e294a65abc8ebac8.tar.gz
Reorganize ./test
Diffstat (limited to 'test/language/statements/throw/S12.13_A2_T4.js')
-rw-r--r--test/language/statements/throw/S12.13_A2_T4.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/test/language/statements/throw/S12.13_A2_T4.js b/test/language/statements/throw/S12.13_A2_T4.js
new file mode 100644
index 000000000..8cfebc076
--- /dev/null
+++ b/test/language/statements/throw/S12.13_A2_T4.js
@@ -0,0 +1,27 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: >
+ "throw Expression" returns (throw, GetValue(Result(1)), empty), where 1
+ evaluates Expression
+es5id: 12.13_A2_T4
+description: Throwing string
+---*/
+
+// CHECK#1
+try{
+ throw "exception #1";
+}
+catch(e){
+ if (e!=="exception #1") $ERROR('#1: Exception ==="exception #1". Actual: Exception ==='+ e );
+}
+
+// CHECK#2
+var b="exception #1";
+try{
+ throw b;
+}
+catch(e){
+ if (e!=="exception #1") $ERROR('#2: Exception ==="exception #1". Actual: Exception ==='+ e );
+}