Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Check valgrind log files #1173

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 23 additions & 1 deletion test/test_valgrind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,33 @@ echo
echo "======================================================================"
echo

for log in $(ls -1 ${PATH_TESTS}.log ${PATH_EXAMPLES}.log); do
LOG_FILES=""
NT=$(ls -1 ${PATH_TESTS}.log 2>/dev/null | wc -l)
if [ $NT -gt 0 ]; then
LOG_FILES="$LOG_FILES $(ls -1 ${PATH_TESTS}.log | xargs)"
fi
NE=$(ls -1 ${PATH_EXAMPLES}.log 2>/dev/null | wc -l)
if [ $NE -gt 0 ]; then
LOG_FILES="$LOG_FILES $(ls -1 ${PATH_EXAMPLES}.log | xargs)"
fi
if [ $(($NT + $NE)) -eq 0 ]; then
echo
echo "FATAL ERROR: no log files found, but number of failed tests equals $ANY_TEST_FAILED!"
echo
exit 1
fi

for log in $LOG_FILES; do
echo ">>>>>>> LOG $log"
cat $log
echo
echo
done

if [ $(($NT + $NE)) -ne $ANY_TEST_FAILED ]; then
echo
echo "ERROR: incorrect number of log files: ANY_TEST_FAILED=$ANY_TEST_FAILED != ($NT + $NE)"
echo
fi

exit 1
Loading