summaryrefslogtreecommitdiff
path: root/tests/test-tss.c
Commit message (Collapse)AuthorAgeFilesLines
* maint: run 'make update-copyright'Simon Josefsson2023-01-011-1/+1
|
* license: fix GPLv3 texts to use a comma instead of semicolon.Bernhard Voelker2022-01-051-1/+1
| | | | | | | | | See: https://www.gnu.org/licenses/gpl-3.0.html#howto Run: $ git grep -l 'Foundation; either version 3' \ | xargs sed -i '/Foundation; either version 3/ s/n; e/n, e/' * All files using GPLv3: Adjust via the above command.
* maint: run 'make update-copyright'Paul Eggert2022-01-011-1/+1
|
* maint: run 'make update-copyright'Paul Eggert2020-12-311-1/+1
|
* maint: Run 'make update-copyright'Paul Eggert2019-12-311-1/+1
|
* Fix typo in comment.Bruno Haible2019-07-151-1/+1
| | | | | | * tests/test-cnd.c (EXPLICIT_YIELD): Fix typo in comment. * tests/test-tss.c (EXPLICIT_YIELD): Likewise. * tests/test-thread_local.c (EXPLICIT_YIELD): Likewise.
* tss tests: Add tests for destructors and races.Bruno Haible2019-06-261-8/+330
| | | | | | | | * tests/test-tss.c (worker_thread): Fix typo in debug message. (test_tss_dtorcheck1, test_tss_dtorcheck2, test_tss_racecheck): New functions. (main): Invoke them. * modules/tls-tests (Depends-on): Add mtx.
* tss tests: Small improvement.Bruno Haible2019-06-201-1/+2
| | | | * tests/test-tss.c (test_tss): Pass a different id to each thread.
* tss: Add tests.Bruno Haible2019-06-201-0/+203
* tests/test-tss.c: New file, based on tests/test-tls.c. * modules/tss-tests: New file.