summaryrefslogtreecommitdiff
path: root/src/exception_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/exception_test.cc')
-rw-r--r--src/exception_test.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/exception_test.cc b/src/exception_test.cc
index 1d32f1bb6a..f0bec1b2c3 100644
--- a/src/exception_test.cc
+++ b/src/exception_test.cc
@@ -137,7 +137,8 @@ TEST_F(ExceptionTest, FindCatchHandler) {
TEST_F(ExceptionTest, StackTraceElement) {
Thread* thread = Thread::Current();
thread->TransitionFromSuspendedToRunnable();
- runtime_->Start();
+ bool started = runtime_->Start();
+ CHECK(started);
JNIEnv* env = thread->GetJniEnv();
ScopedObjectAccess soa(env);