From c5925432feb34550dd5b86d49c07587215c311bf Mon Sep 17 00:00:00 2001 From: tmadlener Date: Wed, 1 Nov 2023 15:42:20 +0100 Subject: [PATCH] Make warning an error and exit --- k4MarlinWrapper/scripts/convertMarlinSteeringToGaudi.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/k4MarlinWrapper/scripts/convertMarlinSteeringToGaudi.py b/k4MarlinWrapper/scripts/convertMarlinSteeringToGaudi.py index d0bfcf8c..0923a2be 100755 --- a/k4MarlinWrapper/scripts/convertMarlinSteeringToGaudi.py +++ b/k4MarlinWrapper/scripts/convertMarlinSteeringToGaudi.py @@ -248,9 +248,11 @@ def convertProcessors(lines, tree, globParams, constants): def findWarnIncludes(tree): """Check the parsed XML structure for include statments and issue a warning""" if any(True for _ in tree.iter("include")): - print("WARNING: Found at least one statement in the Marlin steering file") - print(" These cannot be handled by the conversion script.") - print(" Use Marlin -n to resolve these includes and convert the output of that") + print("ERROR: Found at least one statement in the Marlin steering file") + print(" These cannot be handled by the conversion script.") + print(" Use Marlin -n to resolve these includes and convert the output of that") + + sys.exit(1) def generateGaudiSteering(tree):