diff options
author | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2016-10-30 23:51:27 -0200 |
---|---|---|
committer | Gabriel F. T. Gomes <gftg@linux.vnet.ibm.com> | 2016-11-07 22:09:42 -0200 |
commit | d5b38790950533e80d1fc7c79cab4eacef626547 (patch) | |
tree | df674f46d580085374d04314641e97d8eb267ce8 /nptl/tst-tls3.c | |
parent | 06b9e94f797b910da782b4608545e416ec5af1df (diff) | |
download | glibc-d5b38790950533e80d1fc7c79cab4eacef626547.zip glibc-d5b38790950533e80d1fc7c79cab4eacef626547.tar.gz glibc-d5b38790950533e80d1fc7c79cab4eacef626547.tar.bz2 |
Use write_message instead of write
In the test cases, there are writes to stdout which do not check the result
value. This patch replaces such occurrences with calls to write_message,
which properly deals with the unused result.
Tested for powerpc64le.
Diffstat (limited to 'nptl/tst-tls3.c')
-rw-r--r-- | nptl/tst-tls3.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/nptl/tst-tls3.c b/nptl/tst-tls3.c index 649cb8f..4b96974 100644 --- a/nptl/tst-tls3.c +++ b/nptl/tst-tls3.c @@ -39,13 +39,19 @@ static long stack_size_in_mb; static pthread_t th[N]; +static int do_test (void); + +#define TIMEOUT 5 +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" + #define CB(n) \ static void \ cb##n (void) \ { \ if (th[n] != pthread_self ()) \ { \ - write (STDOUT_FILENO, "wrong callback\n", 15); \ + write_message ("wrong callback\n"); \ _exit (1); \ } \ } @@ -207,8 +213,3 @@ do_test (void) return 0; } - - -#define TIMEOUT 5 -#define TEST_FUNCTION do_test () -#include "../test-skeleton.c" |