From 5afdefdd233bd6b53f51d38bceffae600ae41409 Mon Sep 17 00:00:00 2001 From: Juan Miguel Carceller <22276694+jmcarcell@users.noreply.github.com> Date: Mon, 11 Nov 2024 08:51:27 +0100 Subject: [PATCH] Fix tests when SIO is OFF (#704) Co-authored-by: jmcarcell --- tests/scripts/dumpModelRoundTrip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/dumpModelRoundTrip.sh b/tests/scripts/dumpModelRoundTrip.sh index a1af0d902..00895c33c 100755 --- a/tests/scripts/dumpModelRoundTrip.sh +++ b/tests/scripts/dumpModelRoundTrip.sh @@ -36,7 +36,7 @@ ${PODIO_BASE}/python/podio_class_generator.py \ # more stuff DIFF_EXTRA_ARGS="--exclude=LinkCollections.h" if [ ${ENABLE_SIO} = "OFF" ]; then - DIFF_EXTRA_ARGS=--exclude='*SIO*' + DIFF_EXTRA_ARGS="${DIFF_EXTRA_ARGS} --exclude='*SIO*'" fi diff -ru ${OUTPUT_FOLDER}/${EDM_NAME} ${COMP_BASE_FOLDER}/${EDM_NAME} ${DIFF_EXTRA_ARGS}