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

Unified Diff: test/mjsunit/debug-print.js

Issue 2466273005: [debugger] Further stepping support in test wrapper (Closed)
Patch Set: Move more tests Created 4 years, 1 month 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/mjsunit/debug-optimize.js ('k') | test/mjsunit/debug-stack-check-position.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/debug-print.js
diff --git a/test/mjsunit/debug-print.js b/test/mjsunit/debug-print.js
deleted file mode 100644
index b0e141d709b010f06da05b107db80eeff246e415..0000000000000000000000000000000000000000
--- a/test/mjsunit/debug-print.js
+++ /dev/null
@@ -1,47 +0,0 @@
-// 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.
-
-// Flags: --allow-natives-syntax
-
-// Make sure printing different element kinds doesn't crash.
-
-var array;
-var obj = {};
-
-array = [];
-%DebugPrint(array);
-
-// FAST_SMI_ELEMENTS
-array = [1, 2, 3];
-%DebugPrint(array);
-
-// FAST_HOLEY_SMI_ELEMENTS
-array[10] = 100;
-array[11] = 100;
-%DebugPrint(array);
-
-// FAST_ELEMENTS
-array = [1, obj, obj];
-%DebugPrint(array);
-
-// FAST_HOLEY_ELEMENTS
-array[100] = obj;
-array[101] = obj;
-%DebugPrint(array);
-
-// FAST_DOUBLE_ELEMENTS
-array = [1.1, 2.2, 3.3, 3.3, 3.3, NaN];
-%DebugPrint(array);
-array.push(NaN);
-array.push(NaN);
-%DebugPrint(array);
-
-// FAST_HOLEY_DOUBLE_ELEMENTS
-array[100] = 1.2;
-array[101] = 1.2;
-%DebugPrint(array);
-
-// DICTIONARY_ELEMENTS
-%NormalizeElements(array);
-%DebugPrint(array);
« no previous file with comments | « test/mjsunit/debug-optimize.js ('k') | test/mjsunit/debug-stack-check-position.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698