mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
073dd1bd81
Before it would output a typed test as follows: Suit/Type.Case And now it would be: Suit.Case<Type> In case of NO_PRETTY_TYPES it would simply use the type number instead of its text representation: Suit.Case<0> The change is introduced to make sure CTest outputs tests in a similar fashion which is "*Suit.Case*" and angle brackets "<>" emphasize that we are dealing with a typed (template) kind.
18 lines
882 B
Plaintext
18 lines
882 B
Plaintext
Test project .*
|
|
*Start +[0-9]+: TEST:typed\.case<short>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:typed\.case<short>!4 \.+ +Passed +[0-9.]+ sec
|
|
*Start +[0-9]+: TEST:typed\.case<float>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:typed\.case<float>!4 \.+ +Passed +[0-9.]+ sec
|
|
*Start +[0-9]+: TEST:typed\.case<char>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:typed\.case<char>!4 \.+ +Passed +[0-9.]+ sec
|
|
*Start +[0-9]+: TEST:ns\.typed\.case<short>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:ns\.typed\.case<short>!4 \.+ +Passed +[0-9.]+ sec
|
|
*Start +[0-9]+: TEST:ns\.typed\.case<float>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:ns\.typed\.case<float>!4 \.+ +Passed +[0-9.]+ sec
|
|
*Start +[0-9]+: TEST:ns\.typed\.case<char>!4
|
|
*[0-9]+/[0-9]+ +Test +#[0-9]+: TEST:ns\.typed\.case<char>!4 \.+ +Passed +[0-9.]+ sec
|
|
|
|
100% tests passed, 0 tests failed out of [0-9]+
|
|
|
|
Total Test time \(real\) = +[0-9.]+ sec
|