From 677378ea425764f85015a79df6cead0ae7506f40 Mon Sep 17 00:00:00 2001 From: Azat Khuzhin Date: Mon, 13 Jan 2020 22:24:54 +0300 Subject: [PATCH] cmake: do not print used method (EVENT_SHOW_METHOD) while running tests autotools don't, plus this will make CI logs cleaner (cherry picked from commit f8a6f12712e775720b36e0c4375a5fd6870bb737) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1da4c616..cf47f20c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1236,7 +1236,7 @@ if (NOT EVENT__DISABLE_TESTS) # Default environment variables turns off all event systems, # then we enable each one, one at a time when creating the tests. - set(DEFAULT_TEST_ENV_VARS "EVENT_SHOW_METHOD=1;") + set(DEFAULT_TEST_ENV_VARS) foreach(BACKEND ${BACKENDS}) set(BACKEND_ENV_VAR "EVENT_NO${BACKEND}=1") list(APPEND DEFAULT_TEST_ENV_VARS "${BACKEND_ENV_VAR}")