diff options
Diffstat (limited to 'runtime/utils_test.cc')
-rw-r--r-- | runtime/utils_test.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/utils_test.cc b/runtime/utils_test.cc index a98bc909f2..a3dd13c661 100644 --- a/runtime/utils_test.cc +++ b/runtime/utils_test.cc @@ -392,6 +392,9 @@ TEST_F(UtilsTest, ExecSuccess) { } TEST_F(UtilsTest, ExecError) { + // This will lead to error messages in the log. + ScopedLogSeverity sls(LogSeverity::FATAL); + std::vector<std::string> command; command.push_back("bogus"); std::string error_msg; |