Fix stderr redirection.
[wine/multimedia.git] / tools / runtest
blob9e82a752ee1186adc59713709bf0573c3cb72911
1 #!/bin/sh
3 # Wrapper script to run tests from inside the Wine tree
5 # Usage: runtest [options] input_file
7 # Copyright 2002 Alexandre Julliard
8 # Copyright 2002 Dimitrie O. Paun
10 # This library is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU Lesser General Public
12 # License as published by the Free Software Foundation; either
13 # version 2.1 of the License, or (at your option) any later version.
15 # This library is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 # Lesser General Public License for more details.
20 # You should have received a copy of the GNU Lesser General Public
21 # License along with this library; if not, write to the Free Software
22 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 usage()
27 cat >&2 <<EOF
29 Usage: $0 [options] input_file
31 Options:
32 -q quiet mode
33 -v verbose mode (can be specified multiple times)
34 -s announce successful tests
35 -p prog name of the program to run for C tests
36 -P name set the current platform name
37 -M names set the module names to be tested
38 -T dir set Wine tree top directory (autodetected if not specified)
40 EOF
41 exit 1
44 # Default values
45 platform=$WINETEST_PLATFORM
46 WINETEST_DEBUG=${WINETEST_DEBUG:-1}
48 # parse command-line options
49 while [ "$#" != 0 ]; do
50 case "$1" in
51 -h)
52 usage
54 -p)
55 shift; program="$1"
57 -q)
58 WINETEST_DEBUG=0
60 -v)
61 WINETEST_DEBUG=`expr $WINETEST_DEBUG + 1`
63 -s)
64 WINETEST_REPORT_SUCCESS=1
65 export WINETEST_REPORT_SUCCESS
67 -P)
68 shift; platform="$1"
70 -M)
71 shift; modules="$1"
73 -T)
74 shift; topobjdir="$1"
75 if [ -d "$topobjdir" ]; then :; else usage; fi
78 infile="$1"
79 esac
80 shift
81 done
83 # we must have found an input file
84 if [ ! -f "$infile" ]; then usage; fi
86 # set program to the .c file base name if not specified otherwise
87 if [ -z "$program" ]; then
88 program=`basename "$infile" .c`
91 # check/detect topobjdir
92 if [ -n "$topobjdir" ]; then
93 if [ -f "$topobjdir/server/wineserver" ]
94 then :
95 else
96 echo "Wrong -T argument, $topobjdir/server/wineserver does not exist" 2>&1
97 usage
99 else
100 if [ -f "./server/wineserver" ]; then topobjdir="."
101 elif [ -f "../server/wineserver" ]; then topobjdir=".."
102 elif [ -f "../../server/wineserver" ]; then topobjdir="../.."
103 elif [ -f "../../../server/wineserver" ]; then topobjdir="../../.."
107 # set environment variables needed for Wine
109 if [ -n "$modules" ]; then
110 WINEOPTIONS="$WINEOPTIONS --dll $modules=b"
111 export WINEOPTIONS
113 WINETEST_PLATFORM=${platform:-wine}
114 export WINETEST_PLATFORM WINETEST_DEBUG
116 exec "$topobjdir/wine" "$program" "$infile" "$@"