summaryrefslogtreecommitdiffstats
path: root/winsup/testsuite/winsup.api/pthread/cancel12.c
diff options
context:
space:
mode:
authorThomas Pfaff <tpfaff@gmx.net>2003-02-04 19:34:21 +0000
committerThomas Pfaff <tpfaff@gmx.net>2003-02-04 19:34:21 +0000
commit53c384f2069e717e72725800fe7da28a5d826f78 (patch)
treea4296707f5e51fac8a167e8155eef61cae116c94 /winsup/testsuite/winsup.api/pthread/cancel12.c
parent3dbafd873eb4fbc587a37c06fa4e101ab4350b8e (diff)
downloadcygnal-53c384f2069e717e72725800fe7da28a5d826f78.tar.gz
cygnal-53c384f2069e717e72725800fe7da28a5d826f78.tar.bz2
cygnal-53c384f2069e717e72725800fe7da28a5d826f78.zip
* winsup.api/pthread/cancel11.c: New test.
* winsup.api/pthread/cancel12.c: Ditto.
Diffstat (limited to 'winsup/testsuite/winsup.api/pthread/cancel12.c')
-rw-r--r--winsup/testsuite/winsup.api/pthread/cancel12.c70
1 files changed, 70 insertions, 0 deletions
diff --git a/winsup/testsuite/winsup.api/pthread/cancel12.c b/winsup/testsuite/winsup.api/pthread/cancel12.c
new file mode 100644
index 000000000..f1c64e39c
--- /dev/null
+++ b/winsup/testsuite/winsup.api/pthread/cancel12.c
@@ -0,0 +1,70 @@
+/*
+ * File: cancel12.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 void sig_handler(int sig)
+{
+}
+
+static void *Thread(void *punused)
+{
+ signal (SIGINT, sig_handler);
+
+ system ("sleep 5");
+
+ assert ((void *)signal (SIGINT, NULL) == sig_handler);
+
+ return NULL;
+}
+
+int main (void)
+{
+ void *old_sigh;
+ void * result;
+ pthread_t t;
+
+ assert (pthread_create (&t, NULL, Thread, NULL) == 0);
+ assert (pthread_join (t, &result) == 0);
+ assert (result == NULL);
+
+ return 0;
+}