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

Unified Diff: test/debugger/wrapper/enable-disable.js

Issue 2451153003: [debugger] Add initial skeleton for debug test wrapper (Closed)
Patch Set: Put test-api.js in strict mode Created 4 years, 2 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 | « test/debugger/test-api.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/debugger/wrapper/enable-disable.js
diff --git a/test/debugger/wrapper/enable-disable.js b/test/debugger/wrapper/enable-disable.js
new file mode 100644
index 0000000000000000000000000000000000000000..871e90590e9c07c4b8ac0354f73229108d940dfb
--- /dev/null
+++ b/test/debugger/wrapper/enable-disable.js
@@ -0,0 +1,29 @@
+// Copyright 2016 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.
+
+let compileCount = 0;
+
+const Debug = new DebugWrapper();
+
+Debug.setListener(function(event, exec_state, event_data, data) {
+ if (event != DebugEvent.AfterCompile) return;
+ compileCount++;
+});
+
+Debug.enable();
+assertTrue(compileCount != 0);
+
+const compileCountAfterEnable = compileCount;
+
+Debug.enable(); // Idempotent.
+assertEquals(compileCountAfterEnable, compileCount);
+
+Debug.disable();
+assertEquals(compileCountAfterEnable, compileCount);
+
+Debug.disable(); // Idempotent.
+assertEquals(compileCountAfterEnable, compileCount);
+
+Debug.enable(); // Re-enabling causes recompilation.
+assertEquals(2 * compileCountAfterEnable, compileCount);
« no previous file with comments | « test/debugger/test-api.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698