Skip to content

Commit

Permalink
remove .aux.xml files from msautotests
Browse files Browse the repository at this point in the history
  • Loading branch information
tbonfort committed Sep 21, 2012
1 parent d90499e commit 5727dd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion print-test-results.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ for testcase in "${tests[@]}"; do
continue
fi
cd result
rm -f *.aux.xml
#leftover .aux.xml files are valid for some gdal tests
failedtests=`find . ! -name '*.aux.xml' -type f -printf "%f\n" `
failedtests=`find . -type f -printf "%f\n" `
if [ -z "$failedtests" ]; then
cd ../../..
continue
Expand Down

0 comments on commit 5727dd1

Please sign in to comment.