C: POSIX Stream Test Library Set

I am working on a library of threads that implement user-level threads (I have something like pthread_setscope that works), and I am looking for some set of tests to avoid writing one for every function that I implement (mutexes, conditions, etc.) d ....)

Does anyone know something like this?

+5
source share
1 answer

Here is the OpenGroup POSIX Threads Test Suite :

The test suite can be run in the following modes:

  • POSIX mode 1003.1-1996, Pthreads only.
  • UNIX 98 mode covering Pthreads and XSH5 extensions
  • POSIX 1003.1-2003 mode
  • UNIX 03 mode

, , POSIX 1003.1-1996.

:

  • POSIX 96 MODE: PTHR.hdr 286, PTHR.os 445
  • UNIX98 MODE: PTHR.hdr 365, PTHR.os 563

IEEE POSIX Certification Test Suites.

, Open POSIX Test Suite.

+6

All Articles