Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1393)

Unified Diff: test/mjsunit/es6/reject-caught-by-default-reject-handler.js

Issue 461233003: Fix test expectations. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/mjsunit/es6/reject-caught-by-default-reject-handler.js
diff --git a/test/mjsunit/es6/reject-caught-by-default-reject-handler.js b/test/mjsunit/es6/reject-caught-by-default-reject-handler.js
deleted file mode 100644
index 7760b0eb4cfbb3ffad0f07dac3c13e7918204328..0000000000000000000000000000000000000000
--- a/test/mjsunit/es6/reject-caught-by-default-reject-handler.js
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2014 the V8 project authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// Flags: --expose-debug-as debug --allow-natives-syntax
-
-// Test debug events when we only listen to uncaught exceptions and
-// there is a catch handler for the to-be-rejected Promise.
-// We expect an Exception debug event with a promise to be triggered.
-
-Debug = debug.Debug;
-
-var expected_events = 2;
-var log = [];
-
-var resolve, reject;
-var p0 = new Promise(function(res, rej) { resolve = res; reject = rej; });
-var p1 = p0.then(function() {
- log.push("p0.then");
- return Promise.reject(new Error("123"));
-});
-var p2 = p1.then(function() {
- log.push("p1.then");
-});
-
-var q = new Promise(function(res, rej) {
- log.push("resolve q");
- res();
-});
-
-q.then(function() {
- log.push("resolve p");
- resolve();
-})
-
-
-function listener(event, exec_state, event_data, data) {
- try {
- if (event == Debug.DebugEvent.Exception) {
- expected_events--;
- assertTrue(expected_events >= 0);
- assertTrue(event_data.uncaught());
- assertTrue(event_data.promise() instanceof Promise);
- if (expected_events == 1) {
- // p1 is rejected, uncaught except for its default reject handler.
- assertEquals(0, exec_state.frameCount());
- assertSame(p1, event_data.promise());
- } else {
- // p2 is rejected by p1's default reject handler.
- assertEquals(0, exec_state.frameCount());
- assertSame(p2, event_data.promise());
- }
- }
- } catch (e) {
- %AbortJS(e + "\n" + e.stack);
- }
-}
-
-Debug.setBreakOnUncaughtException();
-Debug.setListener(listener);
-
-log.push("end main");
-
-function testDone(iteration) {
- function checkResult() {
- try {
- assertTrue(iteration < 10);
- if (expected_events === 0) {
- assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
- } else {
- testDone(iteration + 1);
- }
- } catch (e) {
- %AbortJS(e + "\n" + e.stack);
- }
- }
-
- // Run testDone through the Object.observe processing loop.
- var dummy = {};
- Object.observe(dummy, checkResult);
- dummy.dummy = dummy;
-}
-
-testDone(0);

Powered by Google App Engine
This is Rietveld 408576698