Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / nettle / run-tests
blob3d5655cf382fe3b3b4465f3a2db683e090eb321b
1 #! /bin/sh
3 # Copyright (C) 2000, 2001, 2002, 2004, 2005, 2011, 2012 Niels Möller
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License along
16 # with this program; if not, write to the Free Software Foundation, Inc.,
17 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 failed=0
20 all=0
22 debug='no'
23 testflags=''
25 if [ -z "$srcdir" ] ; then
26 srcdir=`pwd`
29 export srcdir
31 # When used in make rules, we sometimes get the filenames VPATH
32 # expanded, but usually not.
33 find_program () {
34 case "$1" in
35 */*)
36 echo "$1"
39 if [ -x "$1" ] ; then
40 echo "./$1"
41 else
42 echo "$srcdir/$1"
45 esac
48 env_program () {
49 if [ -x "$1" ] ; then
50 if "$1"; then : ; else
51 echo FAIL: $1
52 exit 1
57 test_program () {
58 testname=`basename "$1" .exe`
59 testname=`basename "$testname" -test`
60 if [ -z "$EMULATOR" ] || head -1 "$1" | grep '^#!' > /dev/null; then
61 "$1" $testflags
62 else
63 $EMULATOR "$1" $testflags
65 case "$?" in
67 echo PASS: $testname
68 all=`expr $all + 1`
70 77)
71 echo SKIP: $testname
74 echo FAIL: $testname
75 failed=`expr $failed + 1`
76 all=`expr $all + 1`
78 esac
81 env_program `find_program setup-env`
83 while test $# != 0
85 case "$1" in
86 --debug)
87 debug=yes
89 -v)
90 testflags='-v'
92 -*)
93 echo >&2 'Unknown option `'"$1'"
94 exit 1
97 break
99 esac
100 shift
101 done
103 if [ $# -eq 0 ] ; then
104 for f in *-test; do test_program "./$f"; done
105 else
106 for f in "$@" ; do test_program `find_program "$f"`; done
109 if [ $failed -eq 0 ] ; then
110 banner="All $all tests passed"
111 else
112 banner="$failed of $all tests failed"
114 dashes=`echo "$banner" | sed s/./=/g`
115 echo "$dashes"
116 echo "$banner"
117 echo "$dashes"
119 if [ "x$debug" = xno ] ; then
120 env_program `find_program teardown-env`
123 [ "$failed" -eq 0 ]