Commit cd98c2c3 authored by ahaas's avatar ahaas Committed by Commit bot

[tests] Remove prints in tail-call-megatest.js

R=machenbach@chromium.org

Review-Url: https://codereview.chromium.org/2045253006
Cr-Commit-Position: refs/heads/master@{#36853}
parent 206cf398
...@@ -366,7 +366,7 @@ function run_tests(shard) { ...@@ -366,7 +366,7 @@ function run_tests(shard) {
var iter = 0; var iter = 0;
var tests_executed = 0; var tests_executed = 0;
if (shard !== undefined) { if (shard !== undefined) {
print("Running shard #" + shard); // print("Running shard #" + shard);
} }
f_variants.forEach((f_cfg) => { f_variants.forEach((f_cfg) => {
check_new_target_variants.forEach((check_new_target) => { check_new_target_variants.forEach((check_new_target) => {
...@@ -378,7 +378,7 @@ function run_tests(shard) { ...@@ -378,7 +378,7 @@ function run_tests(shard) {
g_inlinable_variants.forEach((g_inlinable) => { g_inlinable_variants.forEach((g_inlinable) => {
test_warmup_counts.forEach((test_warmup_count) => { test_warmup_counts.forEach((test_warmup_count) => {
if (shard !== undefined && (iter++) % SHARDS_COUNT != shard) { if (shard !== undefined && (iter++) % SHARDS_COUNT != shard) {
print("skipping..."); // print("skipping...");
return; return;
} }
tests_executed++; tests_executed++;
...@@ -396,8 +396,8 @@ function run_tests(shard) { ...@@ -396,8 +396,8 @@ function run_tests(shard) {
deopt_mode, deopt_mode,
}; };
var source = test_template(cfg); var source = test_template(cfg);
print("===================="); // print("====================");
print(source); // print(source);
eval(source); eval(source);
}); });
}); });
...@@ -408,7 +408,7 @@ function run_tests(shard) { ...@@ -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. // Uncomment to run all the tests at once or use shard runners.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment