Skip to content

Commit

Permalink
Showing ftCliejnt log files on exit 9 in testHarness.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
kzangeli committed Apr 14, 2024
1 parent ecaf35b commit e48590a
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions test/functionalTest/testHarness.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,47 @@ function exitFunction()
echo
echo
fi

if [ -s /tmp/ftClient.log ]
then
echo "/tmp/ftClient.log:"
echo "-------------------------------------------------"
cat /tmp/ftClient.log
echo "-------------------------------------------------"
echo
echo
fi

if [ -s /tmp/ftClient_dds.log ]
then
echo "/tmp/ftClient_dds.log:"
echo "-------------------------------------------------"
cat /tmp/ftClient_dds.log
echo "-------------------------------------------------"
echo
echo
fi

if [ -s /tmp/orion/logs/ftClient2/ftClient.log ]
then
echo "/tmp/orion/logs/ftClient2/ftClient.log:"
echo "-------------------------------------------------"
cat /tmp/orion/logs/ftClient2/ftClient.log
echo "-------------------------------------------------"
echo
echo
fi

if [ -s /tmp/orion/logs/ftClient2/ftClient_dds.log ]
then
echo "/tmp/orion/logs/ftClient2/ftClient_dds.log:"
echo "-------------------------------------------------"
cat /tmp/orion/logs/ftClient2/ftClient_dds.log
echo "-------------------------------------------------"
echo
echo
fi

elif [ $exitCode == 7 ] || [ $exitCode == 8 ] || [ $exitCode == 10 ] || [ $exitCode == 20 ] || [ $exitCode == 11 ]
then
echo
Expand Down

0 comments on commit e48590a

Please sign in to comment.