mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
The RunCMake infrastructure's `*-stdout.txt` expected output files interpret `\n` as a `\` and `n` rather than a newline. Use a literal newline instead. Otherwise the cases that were trying to match any configuration name via `[^\n]*` would fail on `RelWithDebInfo` because it contains the letter `n`.
13 lines
325 B
Plaintext
13 lines
325 B
Plaintext
Test project .*GoogleTest-build
|
|
[ \t]*Start [0-9]+: property_timeout.case_no_discovery
|
|
[^
|
|
]+property_timeout.case_no_discovery +\.+\*\*\*Timeout +[0-9.]+ sec
|
|
+
|
|
0% tests passed, 1 tests failed out of 1
|
|
+
|
|
Total Test time \(real\) = +[0-9.]+ sec
|
|
+
|
|
The following tests FAILED:
|
|
[^
|
|
]*property_timeout.case_no_discovery \(Timeout\)
|