Skip to content

Commit f7d4063

Browse files
committed
Check valgrind log files
Check valgrind log files. Do not print an error message like: ls: cannot access './examples/umf_example_*.log': No such file or directory when only the tests log files are present for example. Signed-off-by: Lukasz Dorau <[email protected]>
1 parent 23cbc0c commit f7d4063

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

test/test_valgrind.sh

+15-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,21 @@ echo
188188
echo "======================================================================"
189189
echo
190190

191-
for log in $(ls -1 ${PATH_TESTS}.log ${PATH_EXAMPLES}.log); do
191+
LOG_FILES=""
192+
NT=$(ls -1 ${PATH_TESTS}.log 2>/dev/null | wc -l)
193+
if [ $NT -gt 0 ]; then
194+
LOG_FILES="$LOG_FILES $(ls -1 ${PATH_TESTS}.log | xargs)"
195+
fi
196+
NE=$(ls -1 ${PATH_EXAMPLES}.log 2>/dev/null | wc -l)
197+
if [ $NE -gt 0 ]; then
198+
LOG_FILES="$LOG_FILES $(ls -1 ${PATH_EXAMPLES}.log | xargs)"
199+
fi
200+
if [ $(($NT + $NE)) -eq 0 ]; then
201+
echo "FATAL ERROR: no log files found, but number of failed tests equals $ANY_TEST_FAILED!"
202+
exit 1
203+
fi
204+
205+
for log in $LOG_FILES; do
192206
echo ">>>>>>> LOG $log"
193207
cat $log
194208
echo

0 commit comments

Comments
 (0)