Skip to content
Snippets Groups Projects
Commit bef497ad authored by Adam Edward Barton's avatar Adam Edward Barton :speech_balloon: Committed by Rafal Bielski
Browse files

Merge branch 'fix-test-scripts' into 'master'

Fix output redirection in trigger tests

See merge request atlas/athena!22613
parent e4f9c5de
No related branches found
No related tags found
No related merge requests found
......@@ -69,8 +69,8 @@ if [[ $INPUT == 'data' ]]; then
${EXTRA}\
LVL1OutputLevel=WARNING;\
HLTOutputLevel=WARNING;" \
${JOBOPTION} &> ${JOB_LOG}
)
${JOBOPTION} >${JOB_LOG} 2>&1
) 2>&1
else
(set -x
athena.py -b -c \
......@@ -84,8 +84,8 @@ else
${EXTRA}\
LVL1OutputLevel=WARNING;\
HLTOutputLevel=WARNING;" \
${JOBOPTION} &> ${JOB_LOG}
)
${JOBOPTION} >${JOB_LOG} 2>&1
) 2>&1
fi
######################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment