Index: test/webkit/throw-from-finally.js |
diff --git a/test/webkit/concat-while-having-a-bad-time.js b/test/webkit/throw-from-finally.js |
similarity index 60% |
copy from test/webkit/concat-while-having-a-bad-time.js |
copy to test/webkit/throw-from-finally.js |
index dfda1e08a0b36194b787a44ee12a9693acd8aeaf..baa4ae8f4982c987fedc824078c33f4f72c0a419 100644 |
--- a/test/webkit/concat-while-having-a-bad-time.js |
+++ b/test/webkit/throw-from-finally.js |
@@ -22,10 +22,60 @@ |
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
description( |
-"Tests the behavior of Array.prototype.concat while the array is having a bad time due to one of the elements we are concatenating." |
+"This tests that throwing from a finally block has the expected effect." |
); |
-Object.defineProperty(Array.prototype, 0, { writable: false }); |
-shouldBe("[42].concat()", "[42]"); |
+var events = []; |
+try { |
+ events.push("1:try"); |
+} finally { |
+ events.push("1:finally"); |
+} |
+ |
+try { |
+ try { |
+ throw "2:thingy"; |
+ } finally { |
+ events.push("2:finally"); |
+ } |
+} catch (e) { |
+ events.push(e); |
+} |
+ |
+try { |
+ throw "3:thingy"; |
+} catch (e) { |
+ events.push(e); |
+} finally { |
+ events.push("3:finally"); |
+} |
+ |
+try { |
+ try { |
+ throw "4:thingy"; |
+ } catch (e) { |
+ events.push(e); |
+ } finally { |
+ events.push("4:finally"); |
+ throw "4:another thingy"; |
+ } |
+} catch (e) { |
+ events.push(e); |
+} |
+ |
+try { |
+ for (;;) { |
+ try { |
+ continue; |
+ } finally { |
+ events.push("5:hi"); |
+ throw "5:wat"; |
+ } |
+ } |
+} catch (e) { |
+ events.push(e); |
+} |
+ |
+shouldBe("\"\" + events", "\"1:try,1:finally,2:finally,2:thingy,3:thingy,3:finally,4:thingy,4:finally,4:another thingy,5:hi,5:wat\""); |