From 23e9203ee0f5fa667f9c634bb754df7b4a43b665 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Tue, 12 May 2026 10:49:25 -0700 Subject: [PATCH] Unhide warning when schema test is skipped Signed-off-by: Steve Peters --- test/integration/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/CMakeLists.txt b/test/integration/CMakeLists.txt index 6c6ee3cbc..1e74fc473 100644 --- a/test/integration/CMakeLists.txt +++ b/test/integration/CMakeLists.txt @@ -86,10 +86,10 @@ if (EXISTS ${XMLLINT_EXE}) if("${XMLLINT_VERSION}" LESS 21500) set (tests ${tests} schema_test.cc) else() - gz_build_warning("xmllint version is too new (${XMLLINT_VERSION}). schema_test won't be run") + message(WARNING "xmllint version is too new (${XMLLINT_VERSION}). schema_test won't be run") endif() else() - gz_build_warning("xmllint not found. schema_test won't be run") + message(WARNING "xmllint not found. schema_test won't be run") endif() gz_build_tests(TYPE ${TEST_TYPE}