chiark / gitweb /
dirmngr: Drop useless housekeeping.
[gnupg2.git] / common / t-w32-reg.c
1 /* t-w32-reg.c - Regression tests for W32 registry functions
2  * Copyright (C) 2010 Free Software Foundation, Inc.
3  *
4  * This file is part of GnuPG.
5  *
6  * GnuPG is free software; you can redistribute it and/or modify it
7  * under the terms of either
8  *
9  *   - the GNU Lesser General Public License as published by the Free
10  *     Software Foundation; either version 3 of the License, or (at
11  *     your option) any later version.
12  *
13  * or
14  *
15  *   - the GNU General Public License as published by the Free
16  *     Software Foundation; either version 2 of the License, or (at
17  *     your option) any later version.
18  *
19  * or both in parallel, as here.
20  *
21  * GnuPG is distributed in the hope that it will be useful, but
22  * WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24  * General Public License for more details.
25  *
26  * You should have received a copies of the GNU General Public License
27  * and the GNU Lesser General Public License along with this program;
28  * if not, see <https://www.gnu.org/licenses/>.
29  */
30
31 #include <config.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <errno.h>
36 #include <time.h>
37
38 #include "mischelp.h"
39
40 #include "t-support.h"
41 #include "w32help.h"
42
43
44 static void
45 test_read_registry (void)
46 {
47   char *string;
48
49 #ifdef HAVE_W32CE_SYSTEM
50   string = read_w32_registry_string ("HKEY_CLASSES_ROOT",
51                                      "BOOTSTRAP\\CLSID", NULL);
52   if (!string)
53     fail (0);
54   fprintf (stderr, "Bootstrap clsid: %s\n", string);
55   xfree (string);
56 #endif
57
58   string = read_w32_registry_string
59     ("HKEY_CURRENT_USER",
60      "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
61      "User Agent");
62   if (!string)
63     fail (0);
64   fprintf (stderr, "User agent: %s\n", string);
65   xfree (string);
66 }
67
68
69
70
71 int
72 main (int argc, char **argv)
73 {
74   (void)argc;
75   (void)argv;
76
77   test_read_registry ();
78
79   return 0;
80 }