]> git.ipfire.org Git - thirdparty/glibc.git/blame - nptl/tst-unload.c
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / nptl / tst-unload.c
CommitLineData
76a50749 1/* Tests for non-unloading of libpthread.
d4697bc9 2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
76a50749
UD
3 Contributed by Ulrich Drepper <drepper@redhat.com>, 2000.
4
5 The GNU C Library is free software; you can redistribute it and/or
28ddcea0
RM
6 modify it under the terms of the GNU Lesser General Public License as
7 published by the Free Software Foundation; either version 2.1 of the
76a50749
UD
8 License, or (at your option) any later version.
9
10 The GNU C Library 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 GNU
28ddcea0 13 Lesser General Public License for more details.
76a50749 14
28ddcea0 15 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
16 License along with the GNU C Library; see the file COPYING.LIB. If
17 not, see <http://www.gnu.org/licenses/>. */
76a50749
UD
18
19#include <dlfcn.h>
20#include <stdio.h>
21#include <stdlib.h>
22#include <gnu/lib-names.h>
23
b910f788
RM
24static int
25do_test (void)
76a50749 26{
25b8e63c 27 void *p = dlopen (LIBPTHREAD_SO, RTLD_LAZY);
76a50749
UD
28
29 if (p == NULL)
30 {
31 puts ("failed to load " LIBPTHREAD_SO);
b910f788 32 return 1;
76a50749
UD
33 }
34
35 if (dlclose (p) != 0)
36 {
37 puts ("dlclose (" LIBPTHREAD_SO ") failed");
b910f788 38 return 1;
76a50749
UD
39 }
40
41 puts ("seems to work");
42
b910f788 43 return 0;
76a50749 44}
b910f788
RM
45
46#define TEST_FUNCTION do_test ()
47#include "../test-skeleton.c"