summaryrefslogtreecommitdiff
path: root/runtime/common_runtime_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/common_runtime_test.cc')
-rw-r--r--runtime/common_runtime_test.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/runtime/common_runtime_test.cc b/runtime/common_runtime_test.cc
index 0e8a96278b..131d0d8548 100644
--- a/runtime/common_runtime_test.cc
+++ b/runtime/common_runtime_test.cc
@@ -121,9 +121,12 @@ void CommonRuntimeTestImpl::SetUp() {
}
PreRuntimeCreate();
- if (!Runtime::Create(options, false)) {
- LOG(FATAL) << "Failed to create runtime";
- UNREACHABLE();
+ {
+ ScopedLogSeverity sls(LogSeverity::WARNING);
+ if (!Runtime::Create(options, false)) {
+ LOG(FATAL) << "Failed to create runtime";
+ UNREACHABLE();
+ }
}
PostRuntimeCreate();
runtime_.reset(Runtime::Current());