| Index: runtime/vm/benchmark_test.cc
|
| ===================================================================
|
| --- runtime/vm/benchmark_test.cc (revision 10864)
|
| +++ runtime/vm/benchmark_test.cc (working copy)
|
| @@ -40,6 +40,10 @@
|
| timer.Start();
|
| const Error& error = Error::Handle(benchmark->isolate(),
|
| Library::CompileAll());
|
| + if (!error.IsNull()) {
|
| + OS::PrintErr("Unexpected error in CorelibCompileAll benchmark:\n%s",
|
| + error.ToErrorCString());
|
| + }
|
| EXPECT(error.IsNull());
|
| timer.Stop();
|
| int64_t elapsed_time = timer.TotalElapsedTime();
|
|
|