aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js')
-rw-r--r--test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js95
1 files changed, 0 insertions, 95 deletions
diff --git a/test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js b/test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js
deleted file mode 100644
index 46307d511..000000000
--- a/test/suite/sputnik_converted/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S12.14_A13_T1;
- * @section: 12.14;
- * @assertion: Using "try" with "catch" or "finally" statement with a "return" statement;
- * @description: Using try/catch syntax construction;
- */
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S12.14_A13_T1",
-
-path: "TestCases/12_Statement/12.14_The_try_Statement/S12.14_A13_T1.js",
-
-assertion: "Using \"try\" with \"catch\" or \"finally\" statement with a \"return\" statement",
-
-description: "Using try/catch syntax construction",
-
-test: function testcase() {
- // CHECK#1
-function myFunction1(){
- try{
- return 1;
- }
- catch(err){
- $ERROR('#1.1: "return 1" inside function does not lead to throwing exception');
- return 0;
- }
- return 2;
-}
-var x1=myFunction1();
-if(x1!==1){
- $ERROR('#1.2: x1===1. Actual: x1==='+x1);
-}
-
-// CHECK#2
-function myFunction2(){
- try{
- throw "exc";
- return 1;
- }catch(err){
- return 2;
- }
- return 3;
-}
-var x2=myFunction2();
-if (x2!==2){
- $ERROR('#2: x2===2. Actual: x2==='+x2);
-}
-
-// CHECK#3
-function myFunction3(){
- try{
- return someValue;
- }catch(err){
- return 1;
- }
- return 2;
-}
-var x3=myFunction3();
-if (x3!==1){
- $ERROR('#3: x3===1. Actual: x3==='+x3);
-}
-
-// CHECK#4
-function myFunction4(){
- try{
- throw "ex1";
- return 1;
- }catch(err){
- throw "ex2"
- return 0;
- }
- return 2;
-}
-try{
- var x4=myFunction4();
- $ERROR('#4.1: Throwing exception inside function lead to throwing exception outside this function');
-}
-catch(e){
- if(e==="ex1"){
- $ERROR('#4.2: Exception !=="ex1". Actual: catch previous exception');
- }
- if(e!=="ex2"){
- $ERROR('#4.3: Exception ==="ex2". Actual: Exception ==='+ e );
- }
-}
-
- }
-});
-