mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 12:30:06 +00:00
nptl: Add test cases for ISO C11 threads
This patch adds to testsuite new test cases to test all new introduced C11 threads functions, types and macros are tested. Checked with a build for all major ABI (aarch64-linux-gnu, alpha-linux-gnu, arm-linux-gnueabi, i386-linux-gnu, ia64-linux-gnu, m68k-linux-gnu, microblaze-linux-gnu [1], mips{64}-linux-gnu, nios2-linux-gnu, powerpc{64le}-linux-gnu, s390{x}-linux-gnu, sparc{64}-linux-gnu, and x86_64-linux-gnu). Also ran a full check on aarch64-linux-gnu, x86_64-linux-gnu, i686-linux-gnu, arm-linux-gnueabhf, and powerpc64le-linux-gnu. Adhemerval Zanella <adhemerval.zanella@linaro.org> Juan Manuel Torres Palma <jmtorrespalma@gmail.com> [BZ #14092] * nptl/Makefile (tests): Add new test files. * nptl/tst-call-once.c : New file. Tests C11 functions and types. * nptl/tst-cnd-basic.c: Likewise. * nptl/tst-cnd-broadcast.c: Likewise. * nptl/tst-cnd-timedwait.c: Likewise. * nptl/tst-mtx-basic.c: Likewise. * nptl/tst-mtx-recursive.c: Likewise. * nptl/tst-mtx-timedlock.c: Likewise. * nptl/tst-mtx-trylock.c: Likewise. * nptl/tst-thrd-basic.c: Likewise. * nptl/tst-thrd-detach.c: Likewise. * nptl/tst-thrd-sleep.c: Likewise. * nptl/tst-tss-basic.c: Likewise.
This commit is contained in:
parent
c6dd669bed
commit
0a07288b13
18
ChangeLog
18
ChangeLog
@ -1,3 +1,21 @@
|
||||
2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
Juan Manuel Torres Palma <jmtorrespalma@gmail.com>
|
||||
|
||||
[BZ #14092]
|
||||
* nptl/Makefile (tests): Add new test files.
|
||||
* nptl/tst-call-once.c : New file. Tests C11 functions and types.
|
||||
* nptl/tst-cnd-basic.c: Likewise.
|
||||
* nptl/tst-cnd-broadcast.c: Likewise.
|
||||
* nptl/tst-cnd-timedwait.c: Likewise.
|
||||
* nptl/tst-mtx-basic.c: Likewise.
|
||||
* nptl/tst-mtx-recursive.c: Likewise.
|
||||
* nptl/tst-mtx-timedlock.c: Likewise.
|
||||
* nptl/tst-mtx-trylock.c: Likewise.
|
||||
* nptl/tst-thrd-basic.c: Likewise.
|
||||
* nptl/tst-thrd-detach.c: Likewise.
|
||||
* nptl/tst-thrd-sleep.c: Likewise.
|
||||
* nptl/tst-tss-basic.c: Likewise.
|
||||
|
||||
2018-07-24 Adhemerval Zanella <adhemerval.zanella@linaro.org>
|
||||
|
||||
[BZ #14092]
|
||||
|
@ -315,7 +315,10 @@ tests = tst-attr1 tst-attr2 tst-attr3 tst-default-attr \
|
||||
tst-thread_local1 tst-mutex-errorcheck tst-robust10 \
|
||||
tst-robust-fork tst-create-detached tst-memstream \
|
||||
tst-thread-exit-clobber tst-minstack-cancel tst-minstack-exit \
|
||||
tst-minstack-throw
|
||||
tst-minstack-throw \
|
||||
tst-cnd-basic tst-mtx-trylock tst-cnd-broadcast \
|
||||
tst-cnd-timedwait tst-thrd-detach tst-mtx-basic tst-thrd-sleep \
|
||||
tst-mtx-recursive tst-tss-basic tst-call-once tst-mtx-timedlock
|
||||
|
||||
tests-internal := tst-rwlock19 tst-rwlock20 \
|
||||
tst-sem11 tst-sem12 tst-sem13 \
|
||||
|
66
nptl/tst-call-once.c
Normal file
66
nptl/tst-call-once.c
Normal file
@ -0,0 +1,66 @@
|
||||
/* C11 threads call_once test.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Flag that controls the first thread access. */
|
||||
static once_flag flag = ONCE_FLAG_INIT;
|
||||
|
||||
static int value = 0;
|
||||
|
||||
static void
|
||||
do_once (void)
|
||||
{
|
||||
value++;
|
||||
}
|
||||
|
||||
static int
|
||||
func (void* data)
|
||||
{
|
||||
call_once (&flag, do_once);
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
#define N 20
|
||||
|
||||
int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t ids[N];
|
||||
|
||||
for (int i = 0; i < N; ++i)
|
||||
{
|
||||
if (thrd_create (&ids[i], func, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
}
|
||||
|
||||
/* Join threads. */
|
||||
for (int i = 0; i < N; ++i)
|
||||
{
|
||||
if (thrd_join (ids[i], NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
}
|
||||
|
||||
return (value != 1);
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
68
nptl/tst-cnd-basic.c
Normal file
68
nptl/tst-cnd-basic.c
Normal file
@ -0,0 +1,68 @@
|
||||
/* C11 threads condition variable tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Shared condition variable between child and parent. */
|
||||
static cnd_t cond;
|
||||
|
||||
/* Mutex needed to signal and wait threads. */
|
||||
static mtx_t mutex;
|
||||
|
||||
static int
|
||||
signal_parent (void)
|
||||
{
|
||||
if (cnd_signal (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_signal");
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
|
||||
if (cnd_init (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_init failed");
|
||||
if (mtx_init (&mutex, mtx_plain) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
if (thrd_create (&id, (thrd_start_t) signal_parent, NULL)
|
||||
!= thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
if (cnd_wait (&cond, &mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_wait failed");
|
||||
|
||||
/* Joining is not mandatory here, but still done to assure child thread
|
||||
ends correctly. */
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
cnd_destroy (&cond);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
83
nptl/tst-cnd-broadcast.c
Normal file
83
nptl/tst-cnd-broadcast.c
Normal file
@ -0,0 +1,83 @@
|
||||
/* C11 threads condition broadcast variable tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Condition variable where child threads will wait. */
|
||||
static cnd_t cond;
|
||||
|
||||
/* Mutex to control wait on cond. */
|
||||
static mtx_t mutex;
|
||||
|
||||
/* Code executed by each thread. */
|
||||
static int
|
||||
child_wait (void* data)
|
||||
{
|
||||
/* Wait until parent thread sends broadcast here. */
|
||||
mtx_lock (&mutex);
|
||||
cnd_wait (&cond, &mutex);
|
||||
mtx_unlock (&mutex);
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
#define N 5
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t ids[N];
|
||||
unsigned char i;
|
||||
|
||||
if (cnd_init (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_init failed");
|
||||
if (mtx_init (&mutex, mtx_plain) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
/* Create N new threads. */
|
||||
for (i = 0; i < N; ++i)
|
||||
{
|
||||
if (thrd_create (&ids[i], child_wait, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
}
|
||||
|
||||
/* Wait for other threads to reach their wait func. */
|
||||
thrd_sleep (&((struct timespec){.tv_sec = 2}), NULL);
|
||||
|
||||
mtx_lock (&mutex);
|
||||
if (cnd_broadcast (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_broadcast failed");
|
||||
mtx_unlock (&mutex);
|
||||
|
||||
for (i = 0; i < N; ++i)
|
||||
{
|
||||
if (thrd_join (ids[i], NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
}
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
cnd_destroy (&cond);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
70
nptl/tst-cnd-timedwait.c
Normal file
70
nptl/tst-cnd-timedwait.c
Normal file
@ -0,0 +1,70 @@
|
||||
/* C11 threads condition timed wait variable tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Shared condition variable between child and parent. */
|
||||
static cnd_t cond;
|
||||
|
||||
/* Mutex needed to signal and wait threads. */
|
||||
static mtx_t mutex;
|
||||
|
||||
static int
|
||||
signal_parent (void *arg)
|
||||
{
|
||||
if (cnd_signal (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_signal failed");
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
struct timespec w_time;
|
||||
|
||||
if (cnd_init (&cond) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_init failed");
|
||||
if (mtx_init (&mutex, mtx_plain) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
if (clock_gettime (CLOCK_REALTIME, &w_time) != 0)
|
||||
FAIL_EXIT1 ("clock_gettime failed");
|
||||
w_time.tv_nsec += 150000;
|
||||
|
||||
if (thrd_create (&id, signal_parent, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
if (cnd_timedwait (&cond, &mutex, &w_time) != thrd_success)
|
||||
FAIL_EXIT1 ("cnd_timedwait failed");
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
cnd_destroy (&cond);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
73
nptl/tst-mtx-basic.c
Normal file
73
nptl/tst-mtx-basic.c
Normal file
@ -0,0 +1,73 @@
|
||||
/* C11 threads basic mutex tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Shared mutex between child and parent. */
|
||||
static mtx_t mutex;
|
||||
|
||||
/* Shared counter to check possible race conditions. */
|
||||
static int counter;
|
||||
|
||||
static int
|
||||
child_add (void *arg)
|
||||
{
|
||||
if (mtx_lock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_lock failed");
|
||||
|
||||
counter++;
|
||||
|
||||
if (mtx_unlock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_unlock failed");
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
mtx_init (&mutex, mtx_plain);
|
||||
|
||||
thrd_t id;
|
||||
if (thrd_create (&id, child_add, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
if (mtx_lock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_lock failed");
|
||||
|
||||
counter++;
|
||||
|
||||
if (mtx_unlock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_unlock failed");
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
|
||||
if (counter != 2)
|
||||
FAIL_EXIT1 ("counter (%d) != 2", counter);
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
45
nptl/tst-mtx-recursive.c
Normal file
45
nptl/tst-mtx-recursive.c
Normal file
@ -0,0 +1,45 @@
|
||||
/* C11 threads recursive mutex tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
static mtx_t mutex;
|
||||
|
||||
if (mtx_init (&mutex, mtx_recursive) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
if (mtx_lock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_lock failed");
|
||||
|
||||
/* Lock mutex second time, if not recursive should deadlock. */
|
||||
if (mtx_lock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_lock failed");
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
98
nptl/tst-mtx-timedlock.c
Normal file
98
nptl/tst-mtx-timedlock.c
Normal file
@ -0,0 +1,98 @@
|
||||
/* C11 threads timed mutex tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Shared mutex between child and parent. */
|
||||
static mtx_t mutex;
|
||||
|
||||
/* Shared counter to check possible race conditions. */
|
||||
static char shrd_counter;
|
||||
|
||||
/* Maximum amount of time waiting for mutex. */
|
||||
static struct timespec wait_time;
|
||||
|
||||
/* Function to choose an action to do, depending on mtx_timedlock
|
||||
return value. */
|
||||
static inline void
|
||||
choose_action (int action, char* thread_name)
|
||||
{
|
||||
switch (action)
|
||||
{
|
||||
case thrd_success:
|
||||
++shrd_counter;
|
||||
|
||||
if (mtx_unlock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_unlock failed");
|
||||
break;
|
||||
|
||||
case thrd_timedout:
|
||||
break;
|
||||
|
||||
case thrd_error:
|
||||
FAIL_EXIT1 ("%s lock error", thread_name);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
child_add (void *arg)
|
||||
{
|
||||
char child_name[] = "child";
|
||||
|
||||
/* Try to lock mutex. */
|
||||
choose_action (mtx_timedlock (&mutex, &wait_time), child_name);
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
char parent_name[] = "parent";
|
||||
|
||||
if (mtx_init (&mutex, mtx_timed) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
if (clock_gettime (CLOCK_REALTIME, &wait_time) != 0)
|
||||
FAIL_EXIT1 ("clock_gettime failed");
|
||||
/* Tiny amount of time, to assure that if any thread finds it busy.
|
||||
It will receive thrd_timedout. */
|
||||
wait_time.tv_nsec += 1;
|
||||
|
||||
if (thrd_create (&id, child_add, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
choose_action (mtx_timedlock (&mutex, &wait_time), parent_name);
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
|
||||
if (shrd_counter != 2 && shrd_counter != 1)
|
||||
FAIL_EXIT1 ("shrd_counter != {1,2} (%d)", shrd_counter);
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
90
nptl/tst-mtx-trylock.c
Normal file
90
nptl/tst-mtx-trylock.c
Normal file
@ -0,0 +1,90 @@
|
||||
/* C11 threads trylock mutex tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Shared mutex between child and parent. */
|
||||
static mtx_t mutex;
|
||||
|
||||
/* Shared counter to check possible race conditions. */
|
||||
static char shrd_counter;
|
||||
|
||||
/* Function to choose an action to do, depending on mtx_trylock
|
||||
return value. */
|
||||
static inline void
|
||||
choose_action (int action, char* thread_name)
|
||||
{
|
||||
switch (action)
|
||||
{
|
||||
case thrd_success:
|
||||
++shrd_counter;
|
||||
|
||||
if (mtx_unlock (&mutex) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_unlock failed");
|
||||
break;
|
||||
|
||||
case thrd_busy:
|
||||
break;
|
||||
|
||||
case thrd_error:
|
||||
FAIL_EXIT1 ("%s lock error", thread_name);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
child_add (void *arg)
|
||||
{
|
||||
char child_name[] = "child";
|
||||
|
||||
/* Try to lock mutex. */
|
||||
choose_action (mtx_trylock (&mutex), child_name);
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
char parent_name[] = "parent";
|
||||
|
||||
if (mtx_init (&mutex, mtx_timed) != thrd_success)
|
||||
FAIL_EXIT1 ("mtx_init failed");
|
||||
|
||||
if (thrd_create (&id, child_add, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
choose_action (mtx_trylock (&mutex), parent_name);
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join failed");
|
||||
|
||||
if (shrd_counter != 2 && shrd_counter != 1)
|
||||
FAIL_EXIT1 ("shrd_counter != {1,2} (%d)", shrd_counter);
|
||||
|
||||
mtx_destroy (&mutex);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
52
nptl/tst-thrd-detach.c
Normal file
52
nptl/tst-thrd-detach.c
Normal file
@ -0,0 +1,52 @@
|
||||
/* C11 threads thread detach tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <time.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
static int
|
||||
detach_thrd (void *arg)
|
||||
{
|
||||
if (thrd_detach (thrd_current ()) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_detach failed");
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
|
||||
/* Create new thread. */
|
||||
if (thrd_create (&id, detach_thrd, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
/* Give some time so the thread can finish. */
|
||||
thrd_sleep (&(struct timespec) {.tv_sec = 2}, NULL);
|
||||
|
||||
if (thrd_join (id, NULL) == thrd_success)
|
||||
FAIL_EXIT1 ("thrd_join succeed where it should fail");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
51
nptl/tst-thrd-sleep.c
Normal file
51
nptl/tst-thrd-sleep.c
Normal file
@ -0,0 +1,51 @@
|
||||
/* C11 threads thread sleep tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <time.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
static int
|
||||
sleep_thrd (void *arg)
|
||||
{
|
||||
struct timespec const *tl = (struct timespec const *) arg;
|
||||
if (thrd_sleep (tl, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_sleep failed");
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
thrd_t id;
|
||||
struct timespec wait_time = {.tv_sec = 3};
|
||||
|
||||
if (thrd_create (&id, sleep_thrd, (void *) (&wait_time)) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd failed");
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
75
nptl/tst-tss-basic.c
Normal file
75
nptl/tst-tss-basic.c
Normal file
@ -0,0 +1,75 @@
|
||||
/* C11 threads specific storage tests.
|
||||
Copyright (C) 2018 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
|
||||
The GNU C Library is free software; you can redistribute it and/or
|
||||
modify it under the terms of the GNU Lesser General Public
|
||||
License as published by the Free Software Foundation; either
|
||||
version 2.1 of the License, or (at your option) any later version.
|
||||
|
||||
The GNU C Library is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
Lesser General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public
|
||||
License along with the GNU C Library; if not, see
|
||||
<http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include <threads.h>
|
||||
#include <stdio.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <support/check.h>
|
||||
|
||||
/* Thread specific storage. */
|
||||
static tss_t key;
|
||||
|
||||
#define TSS_VALUE (void*) 0xFF
|
||||
|
||||
static int
|
||||
tss_thrd (void *arg)
|
||||
{
|
||||
if (tss_create (&key, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("tss_create failed");
|
||||
|
||||
if (tss_set (key, TSS_VALUE))
|
||||
FAIL_EXIT1 ("tss_set failed");
|
||||
|
||||
void *value = tss_get (key);
|
||||
if (value == 0)
|
||||
FAIL_EXIT1 ("tss_get failed");
|
||||
if (value != TSS_VALUE)
|
||||
FAIL_EXIT1 ("tss_get returned %p, expected %p", value, TSS_VALUE);
|
||||
|
||||
thrd_exit (thrd_success);
|
||||
}
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
/* Setting an invalid key should return an error. */
|
||||
if (tss_set (key, TSS_VALUE) == thrd_success)
|
||||
FAIL_EXIT1 ("tss_set succeed where it should have failed");
|
||||
|
||||
if (tss_create (&key, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("tss_create failed");
|
||||
|
||||
thrd_t id;
|
||||
if (thrd_create (&id, tss_thrd, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd_create failed");
|
||||
|
||||
if (thrd_join (id, NULL) != thrd_success)
|
||||
FAIL_EXIT1 ("thrd failed");
|
||||
|
||||
/* The value set in tss_thrd should not be visible here. */
|
||||
void *value = tss_get (key);
|
||||
if (value != 0)
|
||||
FAIL_EXIT1 ("tss_get succeed where it should have failed");
|
||||
|
||||
tss_delete (key);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
#include <support/test-driver.c>
|
Loading…
Reference in New Issue
Block a user