From 57be4abcf845a9f61b8020a1a4c00abdd79c2d1e Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 2 May 2008 09:19:29 +0000 Subject: runtest: the saga continues :( --- testsuite/runtest | 37 +++++++++++-------------------------- 1 file changed, 11 insertions(+), 26 deletions(-) (limited to 'testsuite/runtest') diff --git a/testsuite/runtest b/testsuite/runtest index 7e0c771e7..d9de8799f 100755 --- a/testsuite/runtest +++ b/testsuite/runtest @@ -62,18 +62,12 @@ run_oldstyle_applet_tests() for testcase in "$tsdir/$applet"/*; do # switch on basename of $testcase case "${testcase##*/}" in - \#*) - continue - ;; - *\~) - continue - ;; - "CVS") - continue - ;; - .*) - continue - ;; + .*) continue ;; # .svn, .git etc + *~) continue ;; # backup files + "CVS") continue ;; + \#*) continue ;; # CVS merge residues + *.mine) continue ;; # svn-produced junk + *.r[0-9]*) continue ;; # svn-produced junk esac run_applet_testcase "$applet" "$testcase" test $? -eq 0 || status=1 @@ -122,22 +116,13 @@ for i in $implemented; do done # Set up option flags so tests can be selective. -export OPTIONFLAGS=:$(sed -nr 's/^CONFIG_//p' "$bindir/.config" | sed 's/=.*//' | xargs | sed 's/ /:/g') +export OPTIONFLAGS=:$( + sed -nr 's/^CONFIG_//p' "$bindir/.config" | + sed 's/=.*//' | xargs | sed 's/ /:/g' + ) status=0 for applet in $applets; do - case "$applet" in - "links") - continue - ;; - "CVS") - continue - ;; - .*) - continue - ;; - esac - # Any old-style tests for this applet? if [ -d "$tsdir/$applet" ]; then run_oldstyle_applet_tests "$applet" @@ -162,7 +147,7 @@ done # Leaving the dir makes it somewhat easier to run failed test by hand #rm -rf "$LINKSDIR" -if [ $status -ne 0 -a x"$VERBOSE" = x ]; then +if [ $status -ne 0 ] && [ x"$VERBOSE" = x ]; then echo "Failures detected, running with -v (verbose) will give more info" fi exit $status -- cgit v1.2.3