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/>. */
23 #define dlopen(name, mode) LoadLibrary (TEXT (name))
24 # define dlsym(handle, func) GetProcAddress (handle, func)
25 #define dlclose(handle) FreeLibrary (handle)
30 static void **handles
;
33 do_test_load (int number
)
38 handles
= malloc (sizeof (void *) * number
);
41 printf ("ERROR on malloc\n");
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
);
58 do_test_unload (int number
)
62 /* Unload shared libraries in different orders. */
63 #ifndef SOLIB_DLCLOSE_REVERSED_ORDER
64 for (i
= 0; i
< number
; i
++)
66 for (i
= number
- 1; i
>= 0; i
--)