mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 14:55:24 +08:00
test: check space also in timestamp logs of debugger print
Signed-off-by: Jitendra Sharma <jitendra.sharma@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
dad53a13c3
commit
b816f6e127
@@ -446,6 +446,6 @@ TEST(DebugLog, WhenLogDebugStringCalledThenNothingIsPrintedToStdout) {
|
||||
TEST(DurationLogTest, givenDurationGetTimeStringThenTimeStringIsCorrect) {
|
||||
auto timeString = DurationLog::getTimeString();
|
||||
for (auto c : timeString) {
|
||||
EXPECT_TRUE(std::isdigit(c) || c == '[' || c == ']' || c == '.');
|
||||
EXPECT_TRUE(std::isdigit(c) || c == '[' || c == ']' || c == '.' || c == ' ');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user