From ee8d419fd455f2a2da84f22d1a354761bb6c6d81 Mon Sep 17 00:00:00 2001 From: Thomas Pfaff Date: Tue, 14 Jan 2003 20:22:20 +0000 Subject: Add winsup.api/pthread/cancel10.c --- winsup/testsuite/winsup.api/pthread/cancel10.c | 68 ++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 winsup/testsuite/winsup.api/pthread/cancel10.c (limited to 'winsup/testsuite/winsup.api/pthread') diff --git a/winsup/testsuite/winsup.api/pthread/cancel10.c b/winsup/testsuite/winsup.api/pthread/cancel10.c new file mode 100644 index 000000000..5e0cc6770 --- /dev/null +++ b/winsup/testsuite/winsup.api/pthread/cancel10.c @@ -0,0 +1,68 @@ +/* + * File: cancel10.c + * + * Test Synopsis: Test if system is a cancellation point. + * + * Test Method (Validation or Falsification): + * - + * + * Requirements Tested: + * - + * + * Features Tested: + * - + * + * Cases Tested: + * - + * + * Description: + * - + * + * Environment: + * - + * + * Input: + * - None. + * + * Output: + * - File name, Line number, and failed expression on failure. + * - No output on success. + * + * Assumptions: + * - have working pthread_create, pthread_cancel, pthread_setcancelstate + * pthread_join + * + * Pass Criteria: + * - Process returns zero exit status. + * + * Fail Criteria: + * - Process returns non-zero exit status. + */ + +#include "test.h" + +static int cancelled = 0; + +static void *Thread(void *punused) +{ + while (!cancelled) + Sleep (0); + + system (NULL); + + return NULL; +} + +int main (void) +{ + void * result; + pthread_t t; + + assert (pthread_create (&t, NULL, Thread, NULL) == 0); + assert (pthread_cancel (t) == 0); + cancelled = 1; + assert (pthread_join (t, &result) == 0); + assert (result == PTHREAD_CANCELED); + + return 0; +} -- cgit v1.2.3