]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/pthread/tst-unload.c
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / pthread / tst-unload.c
CommitLineData
76a50749 1/* Tests for non-unloading of libpthread.
581c785b 2 Copyright (C) 2000-2022 Free Software Foundation, Inc.
76a50749
UD
3
4 The GNU C Library is free software; you can redistribute it and/or
28ddcea0
RM
5 modify it under the terms of the GNU Lesser General Public License as
6 published by the Free Software Foundation; either version 2.1 of the
76a50749
UD
7 License, or (at your option) any later version.
8
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28ddcea0 12 Lesser General Public License for more details.
76a50749 13
28ddcea0 14 You should have received a copy of the GNU Lesser General Public
59ba27a6 15 License along with the GNU C Library; see the file COPYING.LIB. If
5a82c748 16 not, see <https://www.gnu.org/licenses/>. */
76a50749
UD
17
18#include <dlfcn.h>
19#include <stdio.h>
20#include <stdlib.h>
21#include <gnu/lib-names.h>
22
b910f788
RM
23static int
24do_test (void)
76a50749 25{
25b8e63c 26 void *p = dlopen (LIBPTHREAD_SO, RTLD_LAZY);
76a50749
UD
27
28 if (p == NULL)
29 {
30 puts ("failed to load " LIBPTHREAD_SO);
b910f788 31 return 1;
76a50749
UD
32 }
33
34 if (dlclose (p) != 0)
35 {
36 puts ("dlclose (" LIBPTHREAD_SO ") failed");
b910f788 37 return 1;
76a50749
UD
38 }
39
40 puts ("seems to work");
41
b910f788 42 return 0;
76a50749 43}
b910f788
RM
44
45#define TEST_FUNCTION do_test ()
46#include "../test-skeleton.c"