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

Unified Diff: test/debugger/debug/debug-evaluate-no-side-effect-async.js

Issue 2707043003: [debugger] add more tests to side-effect free debug evaluate. (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | test/debugger/debug/debug-evaluate-no-side-effect-iife.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/debug/debug-evaluate-no-side-effect-async.js
diff --git a/test/debugger/debug/debug-evaluate-no-side-effect-async.js b/test/debugger/debug/debug-evaluate-no-side-effect-async.js
new file mode 100644
index 0000000000000000000000000000000000000000..69022a933d43aa86beb2f51242a049f0e2dfaf20
--- /dev/null
+++ b/test/debugger/debug/debug-evaluate-no-side-effect-async.js
@@ -0,0 +1,50 @@
+// Copyright 2017 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: --ignition
+
+// Test that asynchronous features do not work with
+// side-effect free debug-evaluate.
+
+Debug = debug.Debug
+
+var exception = null;
+
+function* generator() {
+ yield 1;
+}
+
+async function async() {
+ return 1;
+}
+
+var g = generator();
+
+function listener(event, exec_state, event_data, data) {
+ if (event != Debug.DebugEvent.Break) return;
+ try {
+ function fail(source) {
+ assertThrows(() => exec_state.frame(0).evaluate(source, true),
+ EvalError);
+ }
+ fail("new Promise()");
+ fail("generator()");
+ fail("g.next()");
+ fail("async()");
+ } catch (e) {
+ exception = e;
+ print(e, e.stack);
+ };
+};
+
+// Add the debug event listener.
+Debug.setListener(listener);
+
+function f() {
+ debugger;
+};
+
+f();
+
+assertNull(exception);
« no previous file with comments | « no previous file | test/debugger/debug/debug-evaluate-no-side-effect-iife.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698