Skip to content

Commit

Permalink
CI: Correct location of output files
Browse files Browse the repository at this point in the history
  • Loading branch information
eschnett committed Jun 8, 2024
1 parent ac95abd commit 2ce998e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions scripts/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,23 @@ echo 'All log files:'
echo '================================================================================'
for logfile in $(find "${ONEPROC_DIR}" "${TWOPROC_DIR}" -name '*.log' -print); do
echo "Log file $logfile:"
ls -l "$logfile"
cat "$logfile"
echo '================================================================================'
done
echo 'All output files:'
echo '================================================================================'
for outfile in $(find "${ONEPROC_DIR}" "${TWOPROC_DIR}" -name '*.out' -print); do
echo "Log file $outfile:"
for outfile in $(find "${ONEPROC_DIR}/../.." "${TWOPROC_DIR}/../.." -name '*.out' -print); do
echo "Output file $outfile:"
ls -l "$outfile"
cat "$outfile"
echo '================================================================================'
done
echo 'All error files:'
echo '================================================================================'
for errfile in $(find "${ONEPROC_DIR}" "${TWOPROC_DIR}" -name '*.err' -print); do
echo "Log file $errfile:"
for errfile in $(find "${ONEPROC_DIR}/../.." "${TWOPROC_DIR}/../.." -name '*.err' -print); do
echo "Error file $errfile:"
ls -l "$errfile"
cat "$errfile"
echo '================================================================================'
done
Expand Down

0 comments on commit 2ce998e

Please sign in to comment.