From dd0887a35fc6e9118ccc7e4c2355840fcd14ec8e Mon Sep 17 00:00:00 2001 From: Miki Rozloznik Date: Mon, 22 Apr 2024 09:29:23 +0200 Subject: [PATCH] Fix --- test/CMakeLists.txt | 2 -- test/arguments/allow_implicit_arrays/CMakeLists.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index d0ef33601..ede9e0230 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -125,7 +125,6 @@ endfunction() # A function to add zserio extra arguments for zserio compilation called from each subtest. function(test_generate_cpp) - message(STATUS "PARAMETERS = ${ARGN}") set(ZSERIO_GENERATE_ARGUMENTS ${ARGN}) set(ZSERIO_EXTRA_ARGS "$ENV{ZSERIO_EXTRA_ARGS}") if (NOT ${ZSERIO_EXTRA_ARGS} STREQUAL "") @@ -141,7 +140,6 @@ function(test_generate_cpp) endif() zserio_generate_cpp(${ZSERIO_GENERATE_ARGUMENTS}) - message(STATUS "ZSERIO_GENERATE_ARGUMENTS = ${ZSERIO_GENERATE_ARGUMENTS}") endfunction() # add all test suites (filter out utils and data subdirectories) diff --git a/test/arguments/allow_implicit_arrays/CMakeLists.txt b/test/arguments/allow_implicit_arrays/CMakeLists.txt index 926396673..b4f2153b8 100644 --- a/test/arguments/allow_implicit_arrays/CMakeLists.txt +++ b/test/arguments/allow_implicit_arrays/CMakeLists.txt @@ -3,7 +3,7 @@ test_generate_cpp( TARGET allow_implicit_arrays_zs SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/zs GEN_DIR ${CMAKE_CURRENT_BINARY_DIR}/gen -# EXTRA_ARGS -withoutSourcesAmalgamation -allowImplicitArrays + EXTRA_ARGS -withoutSourcesAmalgamation -allowImplicitArrays GENERATED_SOURCES_VAR GENERATED_SOURCES OUTPUT_VAR ZSERIO_LOG ERROR_VAR ZSERIO_LOG