mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 13:35:05 +00:00
test/run-suites: Be less picky when searching for tests
This is to better catch distribution errors. It's easier to notice that run-tests fails than to notice that one of many test suites is silently skipped.
This commit is contained in:
parent
4c6cb6afd1
commit
2ae279e0d4
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ done
|
|||
if [ -z "$SUITES" ]; then
|
||||
suitedirs=$top_srcdir/test/suites/*
|
||||
for suitedir in $suitedirs; do
|
||||
if [ -x $suitedir/run ]; then
|
||||
if [ -d $suitedir ]; then
|
||||
SUITES="$SUITES `basename $suitedir`"
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue