diff options
author | Mike Crowe <mac@mcrowe.com> | 2019-06-19 18:07:58 -0300 |
---|---|---|
committer | Adhemerval Zanella <adhemerval.zanella@linaro.org> | 2019-06-21 09:59:50 -0300 |
commit | ce5b73a7c3d8caefc72ac3b95490861e3ee13520 (patch) | |
tree | e6b816726b34c77c1b9569cacbb824dc4c960f94 /nptl/tst-eintr3.c | |
parent | 8bf225d5832eda8fefce9361c53cb68a55150b96 (diff) | |
download | glibc-ce5b73a7c3d8caefc72ac3b95490861e3ee13520.tar glibc-ce5b73a7c3d8caefc72ac3b95490861e3ee13520.tar.gz glibc-ce5b73a7c3d8caefc72ac3b95490861e3ee13520.tar.bz2 glibc-ce5b73a7c3d8caefc72ac3b95490861e3ee13520.zip |
nptl: Convert various tests to use libsupport
* nptl/eintr.c: Use libsupport.
* nptl/tst-eintr1.c: Likewise.
* nptl/tst-eintr2.c: Likewise.
* nptl/tst-eintr3.c: Likewise.
* nptl/tst-eintr4.c: Likewise.
* nptl/tst-eintr5.c: Likewise.
* nptl/tst-mutex-errorcheck.c: Likewise.
* nptl/tst-mutex5.c: Likewise.
Diffstat (limited to 'nptl/tst-eintr3.c')
-rw-r--r-- | nptl/tst-eintr3.c | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/nptl/tst-eintr3.c b/nptl/tst-eintr3.c index d6c4e2bf0d..0562eba4b4 100644 --- a/nptl/tst-eintr3.c +++ b/nptl/tst-eintr3.c @@ -22,11 +22,8 @@ #include <stdio.h> #include <stdlib.h> #include <string.h> - -static int do_test (void); - -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" +#include <support/check.h> +#include <support/xthread.h> #include "eintr.c" @@ -35,9 +32,9 @@ static void * tf (void *arg) { pthread_mutex_t m = PTHREAD_MUTEX_INITIALIZER; - pthread_mutex_lock (&m); + xpthread_mutex_lock (&m); /* This call must not return. */ - pthread_mutex_lock (&m); + xpthread_mutex_lock (&m); puts ("tf: mutex_lock returned"); exit (1); @@ -51,15 +48,7 @@ do_test (void) setup_eintr (SIGUSR1, &self); - pthread_t th; - char buf[100]; - int e = pthread_create (&th, NULL, tf, NULL); - if (e != 0) - { - printf ("main: pthread_create failed: %s\n", - strerror_r (e, buf, sizeof (buf))); - exit (1); - } + pthread_t th = xpthread_create (NULL, tf, NULL); delayed_exit (1); /* This call must never return. */ @@ -67,3 +56,5 @@ do_test (void) puts ("error: pthread_join returned"); return 1; } + +#include <support/test-driver.c> |