summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2019-06-20 17:44:59 +0200
committerBruno Haible <bruno@clisp.org>2019-06-20 17:44:59 +0200
commit7614f78d2a07c57f7ae15ed018409109a7de0361 (patch)
treeb3cfbf800a685cded3b54117ef68aa3f9dbc10c7 /tests
parent0dbc0378bf27549034a43acb123a36e29866e399 (diff)
downloadgnulib-7614f78d2a07c57f7ae15ed018409109a7de0361.tar.gz
tss tests: Small improvement.
* tests/test-tss.c (test_tss): Pass a different id to each thread.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-tss.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test-tss.c b/tests/test-tss.c
index b23767d218..081e1b0359 100644
--- a/tests/test-tss.c
+++ b/tests/test-tss.c
@@ -170,7 +170,8 @@ test_tss (void)
/* Spawn the threads. */
for (i = 0; i < THREAD_COUNT; i++)
- ASSERT (thrd_create (&threads[i], worker_thread, NULL) == thrd_success);
+ ASSERT (thrd_create (&threads[i], worker_thread, (void *) (uintptr_t) i)
+ == thrd_success);
/* Wait for the threads to terminate. */
for (i = 0; i < THREAD_COUNT; i++)