Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Jan 14, 2025
1 parent 1f744c1 commit a3ea61c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/scripts/clicRec_e4h_input.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ fi

# Second check: contents (at least superficially)
echo "Comparing contents of Output_REC_e4h_input$iosvc.slcio"
if ! diff <(anajob Output_REC_e4h_input$iosvc.slcio) $TEST_DIR/inputFiles/anajob_Output_REC.expected; then
if ! diff -I "Output_REC_e4h_input.*\.slcio" <(anajob Output_REC_e4h_input$iosvc.slcio) $TEST_DIR/inputFiles/anajob_Output_REC.expected; then
echo "File contents of REC slcio file are not as expected"
exit 1
fi

echo "Comparing contents of Output_DST_e4h_input$iosvc.slcio"
if ! diff <(anajob Output_DST_e4h_input$iosvc.slcio) $TEST_DIR/inputFiles/anajob_Output_DST.expected; then
if ! diff -I "Output_REC_e4h_input.*\.slcio" <(anajob Output_DST_e4h_input$iosvc.slcio) $TEST_DIR/inputFiles/anajob_Output_DST.expected; then
echo "File contents of DST slcio file are not as expected"
exit 1
fi
Expand Down

0 comments on commit a3ea61c

Please sign in to comment.