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

Unified Diff: test/mjsunit/es6/tail-call-megatest.js

Issue 2045263002: [heap] Avoid the use of cells to point from code to new-space objects. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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
« src/heap/mark-compact.cc ('K') | « test/cctest/test-serialize.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/es6/tail-call-megatest.js
diff --git a/test/mjsunit/es6/tail-call-megatest.js b/test/mjsunit/es6/tail-call-megatest.js
index 1de8ec6c8e9b54a6ec69024ba1879589c03aba8c..8c563ea9765c57c5b3d92b8ca7a1344ff3bba4da 100644
--- a/test/mjsunit/es6/tail-call-megatest.js
+++ b/test/mjsunit/es6/tail-call-megatest.js
@@ -366,7 +366,7 @@ function run_tests(shard) {
var iter = 0;
var tests_executed = 0;
if (shard !== undefined) {
- print("Running shard #" + shard);
+// print("Running shard #" + shard);
Michael Achenbach 2016/06/09 11:08:23 Thanks for the speed-up. Could this not land in a
titzer 2016/06/09 11:10:22 +1
}
f_variants.forEach((f_cfg) => {
check_new_target_variants.forEach((check_new_target) => {
@@ -378,7 +378,7 @@ function run_tests(shard) {
g_inlinable_variants.forEach((g_inlinable) => {
test_warmup_counts.forEach((test_warmup_count) => {
if (shard !== undefined && (iter++) % SHARDS_COUNT != shard) {
- print("skipping...");
+// print("skipping...");
return;
}
tests_executed++;
@@ -396,8 +396,8 @@ function run_tests(shard) {
deopt_mode,
};
var source = test_template(cfg);
- print("====================");
- print(source);
+// print("====================");
+// print(source);
eval(source);
});
});
@@ -408,7 +408,7 @@ function run_tests(shard) {
});
});
});
- print("Number of tests executed: " + tests_executed);
+// print("Number of tests executed: " + tests_executed);
}
// Uncomment to run all the tests at once or use shard runners.
« src/heap/mark-compact.cc ('K') | « test/cctest/test-serialize.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698