diff options
author | Brad King <brad.king@kitware.com> | 2023-01-16 19:32:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-01-18 16:37:11 (GMT) |
commit | a78cba51978fbc805993604767c1902a249482ff (patch) | |
tree | b4df0181bf56b68135e52c3745f60ab10c9d229c /Tests/RunCMake/FileAPI | |
parent | 645671d36f5cf0fa411d98a637f4edbc3d896c57 (diff) | |
download | CMake-a78cba51978fbc805993604767c1902a249482ff.zip CMake-a78cba51978fbc805993604767c1902a249482ff.tar.gz CMake-a78cba51978fbc805993604767c1902a249482ff.tar.bz2 |
message: Add CONFIGURE_LOG mode to record a message in the configure log
Provide a replacement for `file(APPEND .../CMake{Output,Error}.log)`
that records messages in the configure log.
Issue: #23200
Diffstat (limited to 'Tests/RunCMake/FileAPI')
-rw-r--r-- | Tests/RunCMake/FileAPI/configureLog-v1-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/RunCMake/FileAPI/configureLog-v1-check.py b/Tests/RunCMake/FileAPI/configureLog-v1-check.py index ea5beb4..05c7893 100644 --- a/Tests/RunCMake/FileAPI/configureLog-v1-check.py +++ b/Tests/RunCMake/FileAPI/configureLog-v1-check.py @@ -14,7 +14,7 @@ def check_object_configureLog(o): assert os.path.exists(path) eventKindNames = o["eventKindNames"] assert is_list(eventKindNames) - assert sorted(eventKindNames) == ["try_compile-v1", "try_run-v1"] + assert sorted(eventKindNames) == ["message-v1", "try_compile-v1", "try_run-v1"] assert is_dict(index) assert sorted(index.keys()) == ["cmake", "objects", "reply"] |