ignore invalid DOF provider sections
[binutils-gdb.git] / gdb / testsuite / gdb.perf / solib.c
bloba5b23e95865d8f4e49f923871930154a38dbf2ff
1 /* This testcase is part of GDB, the GNU debugger.
3 Copyright (C) 2013-2015 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */
18 #include <stdio.h>
19 #include <stdlib.h>
21 #ifdef __WIN32__
22 #include <windows.h>
23 #define dlopen(name, mode) LoadLibrary (TEXT (name))
24 # define dlsym(handle, func) GetProcAddress (handle, func)
25 #define dlclose(handle) FreeLibrary (handle)
26 #else
27 #include <dlfcn.h>
28 #endif
30 static void **handles;
32 void
33 do_test_load (int number)
35 char libname[40];
36 int i;
38 handles = malloc (sizeof (void *) * number);
39 if (handles == NULL)
41 printf ("ERROR on malloc\n");
42 exit (-1);
45 for (i = 0; i < number; i++)
47 sprintf (libname, "solib-lib%d", i);
48 handles[i] = dlopen (libname, RTLD_LAZY);
49 if (handles[i] == NULL)
51 printf ("ERROR on dlopen %s\n", libname);
52 exit (-1);
57 void
58 do_test_unload (int number)
60 int i;
62 /* Unload shared libraries in different orders. */
63 #ifndef SOLIB_DLCLOSE_REVERSED_ORDER
64 for (i = 0; i < number; i++)
65 #else
66 for (i = number - 1; i >= 0; i--)
67 #endif
68 dlclose (handles[i]);
70 free (handles);
73 static void
74 end (void)
77 int
78 main (void)
80 end ();
82 return 0;