Base: Fix logging_test
Update the expected logging pattern.
Bug: 31338270
Test: mmma system/core/base && adb sync && adb shell /data/nativetest/libbase_test/libbase_test32
Change-Id: I299620669126bc0258cad6e30d5b40bff5ea92ad
diff --git a/base/logging_test.cpp b/base/logging_test.cpp
index 3de42b7..8ecd8fd 100644
--- a/base/logging_test.cpp
+++ b/base/logging_test.cpp
@@ -126,7 +126,12 @@
char log_char = log_characters[severity];
std::string holder(__FILE__);
return android::base::StringPrintf(
- "%c[[:space:]]+[[:digit:]]+[[:space:]]+[[:digit:]]+ %s:[[:digit:]]+] %s",
+ "%c[[:space:]]+"
+ "[[:digit:]]+-[[:digit:]]+[[:space:]]+"
+ "[[:digit:]]+:[[:digit:]]+:[[:digit:]]+[[:space:]]+"
+ "[[:digit:]]+[[:space:]]+"
+ "[[:digit:]]+[[:space:]]+"
+ "%s:[[:digit:]]+] %s",
log_char, basename(&holder[0]), message);
}