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

Side by Side Diff: test/mjsunit/es6/debug-promises/reject-with-invalid-reject.js

Issue 455683002: Fix debug-promises tests. (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --expose-debug-as debug --allow-natives-syntax 5 // Flags: --expose-debug-as debug --allow-natives-syntax
6 6
7 // Test debug events when a Promise is rejected, which is caught by a custom 7 // Test debug events when a Promise is rejected, which is caught by a custom
8 // promise, which has a number for reject closure. We expect an Exception debug 8 // promise, which has a number for reject closure. We expect an Exception debug
9 // events trying to call the invalid reject closure. 9 // events trying to call the invalid reject closure.
10 10
(...skipping 24 matching lines...) Expand all
35 }); 35 });
36 36
37 function listener(event, exec_state, event_data, data) { 37 function listener(event, exec_state, event_data, data) {
38 try { 38 try {
39 if (event == Debug.DebugEvent.Exception) { 39 if (event == Debug.DebugEvent.Exception) {
40 expected_events--; 40 expected_events--;
41 assertTrue(expected_events >= 0); 41 assertTrue(expected_events >= 0);
42 assertEquals("number is not a function", event_data.exception().message); 42 assertEquals("number is not a function", event_data.exception().message);
43 // All of the frames on the stack are from native Javascript. 43 // All of the frames on the stack are from native Javascript.
44 assertEquals(0, exec_state.frameCount()); 44 assertEquals(0, exec_state.frameCount());
45 assertEquals(q, event_data.promise());
46 } 45 }
47 } catch (e) { 46 } catch (e) {
48 %AbortJS(e + "\n" + e.stack); 47 %AbortJS(e + "\n" + e.stack);
49 } 48 }
50 } 49 }
51 50
52 Debug.setBreakOnUncaughtException(); 51 Debug.setBreakOnUncaughtException();
53 Debug.setListener(listener); 52 Debug.setListener(listener);
54 53
55 function testDone(iteration) { 54 function testDone(iteration) {
(...skipping 13 matching lines...) Expand all
69 68
70 // Run testDone through the Object.observe processing loop. 69 // Run testDone through the Object.observe processing loop.
71 var dummy = {}; 70 var dummy = {};
72 Object.observe(dummy, checkResult); 71 Object.observe(dummy, checkResult);
73 dummy.dummy = dummy; 72 dummy.dummy = dummy;
74 } 73 }
75 74
76 testDone(0); 75 testDone(0);
77 76
78 log.push("end main"); 77 log.push("end main");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698