- Allow setting NetBIOS ComputerName through registry.
[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 <stdio.h>
27 #include <stdlib.h>
28 #include "winbase.h"
29
30 EOF
31
32 for file in "$@"; do
33     test=`basename "$file" .c`
34     echo "extern void func_$test(void);"
35 done
36
37 cat <<EOF
38
39 struct test
40 {
41     const char *name;
42     void (*func)(void);
43 };
44
45 static const struct test winetest_testlist[] =
46 {
47 EOF
48
49 for file in "$@"; do
50     test=`basename "$file" .c`
51     echo "    { \"$test\", func_$test },"
52 done
53
54 cat <<EOF
55     { 0, 0 }
56 };
57
58 #define WINETEST_WANT_MAIN
59 #include "wine/test.h"
60 EOF