From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../language/statements/try/S12.14_A12_T4.js | 64 ++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 js/src/tests/test262/language/statements/try/S12.14_A12_T4.js (limited to 'js/src/tests/test262/language/statements/try/S12.14_A12_T4.js') diff --git a/js/src/tests/test262/language/statements/try/S12.14_A12_T4.js b/js/src/tests/test262/language/statements/try/S12.14_A12_T4.js new file mode 100644 index 0000000000..5fd433d0d3 --- /dev/null +++ b/js/src/tests/test262/language/statements/try/S12.14_A12_T4.js @@ -0,0 +1,64 @@ +// Copyright 2009 the Sputnik authors. All rights reserved. +// This code is governed by the BSD license found in the LICENSE file. + +/*--- +info: | + Using "try" with "catch" or "finally" statement within/without a "for-in" + statement +es5id: 12.14_A12_T4 +description: Try statement inside loop, where combinate using break and continue +---*/ + +var x; +var mycars = new Array(); +mycars[0] = "Saab"; +mycars[1] = "Volvo"; +mycars[2] = "BMW"; + +// CHECK#1 +var c1=0,fin=0; +for (x in mycars){ + try{ + c1+=1; + break; + } + catch(er1){} + finally{ + fin=1; + continue; + } + fin=-1; + c1+=2; +} +if(fin!==1){ + throw new Test262Error('#1.1: "finally" block must be evaluated'); +} +if(c1!==3){ + throw new Test262Error('#1.2: "try{break} catch finally{continue}" must work correctly'); +} + +// CHECK#2 +var c2=0,fin2=0; +for (x in mycars){ + try{ + throw "ex1"; + } + catch(er1){ + c2+=1; + break; + } + finally{ + fin2=1; + continue; + } + c2+=2; + fin2=-1; +} +if(fin2!==1){ + throw new Test262Error('#2.1: "finally" block must be evaluated'); +} +if(c2!==3){ + throw new Test262Error('#2.2: "try catch{break} finally{continue}" must work correctly'); +} + +reportCompare(0, 0); -- cgit v1.2.3