| Index: benchmarks/run.js
|
| ===================================================================
|
| --- benchmarks/run.js (revision 1056)
|
| +++ benchmarks/run.js (working copy)
|
| @@ -36,7 +36,7 @@
|
| var success = true;
|
|
|
| function PrintResult(name, result) {
|
| - print(name + ': ' + formatScore(result));
|
| + print(name + ': ' + result);
|
| }
|
|
|
|
|
| @@ -49,8 +49,7 @@
|
| function PrintScore(score) {
|
| if (success) {
|
| print('----');
|
| - print('Score (version ' + BenchmarkSuite.version + '): '
|
| - + formatScore(score));
|
| + print('Score (version ' + BenchmarkSuite.version + '): ' + score);
|
| }
|
| }
|
|
|
|
|