From 0d26f5fb968b400dc50dc257986e15b65642fb03 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 22 Jul 2024 05:53:09 -0500 Subject: [PATCH] Tests examples/*: also pick up *run_only output variants --- tests/examples/CMakeLists.txt.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/examples/CMakeLists.txt.in b/tests/examples/CMakeLists.txt.in index 5be72f7f1c..18416f4f68 100644 --- a/tests/examples/CMakeLists.txt.in +++ b/tests/examples/CMakeLists.txt.in @@ -21,7 +21,9 @@ foreach(_diff_file ${_diff_files}) ) # Create symbolic links to the output files: - file(GLOB _output_files "${_base_directory}/${_step}*.output*") + file(GLOB _output_files + "${_base_directory}/${_step}*.output*" "${_base_directory}/${_step}*.run_only" + ) foreach(_file ${_output_files}) get_filename_component(_destination "${_file}" NAME) set(_destination "${CMAKE_CURRENT_SOURCE_DIR}/${_destination}") -- 2.39.5