Don't let applications add Connection header to request.
[wine.git] / tools / make_ctests
blob9da393d2091ad6c7cf925c3a3814f69336ad1330
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 # ***** Keep in sync with tools/winapi/msvcmaker:_generate_testlist_c *****
25 cat <<EOF
26 /* Automatically generated file; DO NOT EDIT!! */
28 /* stdarg.h is needed for Winelib */
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include "windef.h"
33 #include "winbase.h"
35 EOF
37 for file in "$@"; do
38 test=`basename "$file" .c`
39 echo "extern void func_$test(void);"
40 done
42 cat <<EOF
44 struct test
46 const char *name;
47 void (*func)(void);
50 static const struct test winetest_testlist[] =
52 EOF
54 for file in "$@"; do
55 test=`basename "$file" .c`
56 echo " { \"$test\", func_$test },"
57 done
59 cat <<EOF
60 { 0, 0 }
63 #define WINETEST_WANT_MAIN
64 #include "wine/test.h"
65 EOF