Fixed typo in test arguments.
[wine] / tools / make_ctests
1 #!/bin/sh
2 #
3 # Script to generate a C file containing a list of tests
4 #
5 # Copyright 2002 Alexandre Julliard
6 # Copyright 2002 Dimitrie O. Paun
7 #
8 # This library is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU Lesser General Public
10 # License as published by the Free Software Foundation; either
11 # version 2.1 of the License, or (at your option) any later version.
12 #
13 # This library is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # Lesser General Public License for more details.
17 #
18 # You should have received a copy of the GNU Lesser General Public
19 # License along with this library; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21 #
22
23 cat <<EOF
24 /* Automatically generated file; DO NOT EDIT!! */
25
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include "windef.h"
30 #include "winbase.h"
31
32 EOF
33
34 for file in "$@"; do
35     test=`basename "$file" .c`
36     echo "extern void func_$test(void);"
37 done
38
39 cat <<EOF
40
41 struct test
42 {
43     const char *name;
44     void (*func)(void);
45 };
46
47 static const struct test winetest_testlist[] =
48 {
49 EOF
50
51 for file in "$@"; do
52     test=`basename "$file" .c`
53     echo "    { \"$test\", func_$test },"
54 done
55
56 cat <<EOF
57     { 0, 0 }
58 };
59
60 #define WINETEST_WANT_MAIN
61 #include "wine/test.h"
62 EOF