8043504: Octane test harness was missing argument to print_always at one callsite, causing erroneous logging

Reviewed-by: sundar, attila
This commit is contained in:
Marcus Lagergren 2014-05-20 10:40:28 +02:00
parent cfbed730b7
commit 3d7f88fb31

View File

@ -173,7 +173,7 @@ function run_one_benchmark(arg, iters) {
}
mean_score /= iters;
} catch (e) {
print_always("*** Aborted and setting score to zero. Reason: " + e);
print_always(arg, "*** Aborted and setting score to zero. Reason: " + e);
if (e instanceof java.lang.Throwable) {
e.printStackTrace();
}