Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Unified Diff: runtime/vm/benchmark_test.cc

Issue 10854197: A round of edits to make mirrors.dart more like our current working (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698