diff options
author | Anwar Ghuloum <anwarg@google.com> | 2013-07-25 17:32:40 -0700 |
---|---|---|
committer | Anwar Ghuloum <anwarg@google.com> | 2013-07-25 17:32:40 -0700 |
commit | be576f48e4bf5c2afcaadd6e3a6d0f6a3153f031 (patch) | |
tree | e93a1e56633be9324f7993e416d584320a1bae30 /runtime/common_test.h | |
parent | 374121f5811316b0bb936767ed078f2c164a9d7c (diff) | |
download | art-be576f48e4bf5c2afcaadd6e3a6d0f6a3153f031.zip art-be576f48e4bf5c2afcaadd6e3a6d0f6a3153f031.tar.gz art-be576f48e4bf5c2afcaadd6e3a6d0f6a3153f031.tar.bz2 |
Fix jni-internal test breakage
Change-Id: I30780e27e68e13d19f9d8b4b37af902f169c7bdb
Diffstat (limited to 'runtime/common_test.h')
-rw-r--r-- | runtime/common_test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/common_test.h b/runtime/common_test.h index 4fe9be6..79710b4 100644 --- a/runtime/common_test.h +++ b/runtime/common_test.h @@ -474,6 +474,7 @@ class CommonTest : public testing::Test { void CompileMethod(mirror::AbstractMethod* method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { CHECK(method != NULL); base::TimingLogger timings("CommonTest::CompileMethod", false, false); + timings.StartSplit("CompileOne"); compiler_driver_->CompileOne(method, timings); MakeExecutable(method); } |