diff options
Diffstat (limited to 'benchmark/run.js')
-rw-r--r-- | benchmark/run.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/run.js b/benchmark/run.js index 7917c7688..b1479b600 100644 --- a/benchmark/run.js +++ b/benchmark/run.js @@ -22,9 +22,9 @@ function runNext (i) { sys.print(benchmarks[i] + ": "); exec(benchmarks[i], function (elapsed, code) { if (code != 0) { - sys.puts("ERROR "); + console.log("ERROR "); } - sys.puts(elapsed); + console.log(elapsed); runNext(i+1); }); }; |