Move IQueryAssociations into shlwapi. Docs/-W/MSVC++ fixes.
[wine/wine-kai.git] / tools / make_ctests
blob196bd53cf59d68df1ac4732a0d4362f8432bef6a
1 #!/bin/sh
3 # Script to generate a C file containing a list of tests
5 # Copyright 2002 Alexandre Julliard
6 # Copyright 2002 Dimitrie O. Paun
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.
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.
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
23 cat <<EOF
24 /* Automatically generated file; DO NOT EDIT!! */
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include "windef.h"
29 #include "winbase.h"
31 EOF
33 for file in "$@"; do
34 test=`basename "$file" .c`
35 echo "extern void func_$test(void);"
36 done
38 cat <<EOF
40 struct test
42 const char *name;
43 void (*func)(void);
46 static const struct test winetest_testlist[] =
48 EOF
50 for file in "$@"; do
51 test=`basename "$file" .c`
52 echo " { \"$test\", func_$test },"
53 done
55 cat <<EOF
56 { 0, 0 }
59 #define WINETEST_WANT_MAIN
60 #include "wine/test.h"
61 EOF