1 /* Copyright (C) 2003-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
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
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
27 static pthread_barrier_t b
;
29 e = pthread_barrier_wait (&b); \
30 if (e != 0 && e != PTHREAD_BARRIER_SERIAL_THREAD) \
32 puts ("barrier_wait failed"); \
44 char *p2
= getcwd (NULL
, 0);
47 puts ("2nd getcwd failed");
51 if (strcmp (p
, p2
) != 0)
53 printf ("initial cwd mismatch: \"%s\" vs \"%s\"\n", p
, p2
);
60 if (chdir ("..") != 0)
62 puts ("chdir failed");
69 puts ("getcwd failed");
80 if (pthread_barrier_init (&b
, NULL
, 2) != 0)
82 puts ("barrier_init failed");
87 if (pthread_create (&th
, NULL
, tf
, NULL
) != 0)
89 puts ("create failed");
96 puts ("getcwd failed");
103 if (pthread_join (th
, NULL
) != 0)
105 puts ("join failed");
109 char *p2
= getcwd (NULL
, 0);
112 puts ("2nd getcwd failed");
116 if (strcmp (p
, p2
) != 0)
118 printf ("cwd after chdir mismatch: \"%s\" vs \"%s\"\n", p
, p2
);
129 #define TEST_FUNCTION do_test ()
130 #include "../test-skeleton.c"