Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Pfaff <tpfaff@gmx.net>2003-01-14 23:15:58 +0300
committerThomas Pfaff <tpfaff@gmx.net>2003-01-14 23:15:58 +0300
commit17f422866a5fecc599d8861c1fff895c1d82720b (patch)
tree7c1af84f3c7fa698689fdd4890b83f416fb507e3 /winsup/testsuite
parent4a3584c84b70c3ac30645bd114c0891b1f54497b (diff)
Add winsup.api/pthread/cancel9.c
Diffstat (limited to 'winsup/testsuite')
-rw-r--r--winsup/testsuite/ChangeLog5
-rw-r--r--winsup/testsuite/winsup.api/pthread/cancel9.c74
2 files changed, 79 insertions, 0 deletions
diff --git a/winsup/testsuite/ChangeLog b/winsup/testsuite/ChangeLog
index e1c742a0b..76be5ac12 100644
--- a/winsup/testsuite/ChangeLog
+++ b/winsup/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2003-01-14 Thomas Pfaff <tpfaff@gmx.net>
+ * winsup.api/pthread/cancel9.c: New test. Port from pthreads-win32
+ project.
+
+2003-01-14 Thomas Pfaff <tpfaff@gmx.net>
+
* winsup.api/pthread/cancel7.c: New test. Port from pthreads-win32
project.
* winsup.api/pthread/cancel8.c: Ditto.
diff --git a/winsup/testsuite/winsup.api/pthread/cancel9.c b/winsup/testsuite/winsup.api/pthread/cancel9.c
new file mode 100644
index 000000000..7bc958a0a
--- /dev/null
+++ b/winsup/testsuite/winsup.api/pthread/cancel9.c
@@ -0,0 +1,74 @@
+/*
+ * File: cancel9.c
+ *
+ * Test Synopsis: Test if waitpid 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 void *Thread(void *punused)
+{
+ int res;
+ pid_t pid = fork ();
+
+ assert (pid != -1);
+ switch (pid)
+ {
+ case 0:
+ sleep (10);
+ break;
+ default:
+ assert (waitpid (pid, &res, 0) != -1);
+ }
+
+ return NULL;
+}
+
+int main (void)
+{
+ void * result;
+ pthread_t t;
+
+ assert (pthread_create (&t, NULL, Thread, NULL) == 0);
+ sleep (5);
+ assert (pthread_cancel (t) == 0);
+ assert (pthread_join (t, &result) == 0);
+ assert (result == PTHREAD_CANCELED);
+
+ return 0;
+}