Skip to content

Commit

Permalink
tests: consistency with other tests
Browse files Browse the repository at this point in the history
  • Loading branch information
khorben committed Oct 9, 2024
1 parent ba8e67a commit e7f13cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ _test()
#usage
_usage()
{
echo "Usage: $PROGNAME [-c][-P prefix]" 1>&2
echo "Usage: $PROGNAME [-c][-P prefix] target" 1>&2
return 1
}

Expand All @@ -95,7 +95,7 @@ while getopts "cP:" name; do
clean=1
;;
P)
#XXX ignored
#XXX ignored for compatibility
;;
?)
_usage
Expand All @@ -110,7 +110,7 @@ if [ $# -ne 1 ]; then
fi
target="$1"

[ "$clean" -ne 0 ] && exit 0
[ $clean -ne 0 ] && exit 0

tests="mime mimehandler pkgconfig.sh"
failures=
Expand Down

0 comments on commit e7f13cc

Please sign in to comment.