mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-30 19:10:36 +08:00
Add winsup.api/pthread/cancel7.c and winsup.api/pthread/cancel8.c
This commit is contained in:
parent
7ec66a2c28
commit
35dbe79943
@ -1,5 +1,11 @@
|
|||||||
2003-01-14 Thomas Pfaff <tpfaff@gmx.net>
|
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.
|
||||||
|
|
||||||
|
2003-01-14 Thomas Pfaff <tpfaff@gmx.net>
|
||||||
|
|
||||||
* winsup.api/pthread/cancel6.c: New test. Port from pthreads-win32
|
* winsup.api/pthread/cancel6.c: New test. Port from pthreads-win32
|
||||||
project.
|
project.
|
||||||
|
|
||||||
|
71
winsup/testsuite/winsup.api/pthread/cancel7.c
Normal file
71
winsup/testsuite/winsup.api/pthread/cancel7.c
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
* File: cancel7.c
|
||||||
|
*
|
||||||
|
* Test Synopsis: Test if sleep 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 has5secsleeped = 0;
|
||||||
|
|
||||||
|
static void *Thread(void *punused)
|
||||||
|
{
|
||||||
|
assert (pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, NULL) == 0);
|
||||||
|
/* thread should sleep 5 seconds and not get canceled */
|
||||||
|
sleep(5);
|
||||||
|
has5secsleeped = 1;
|
||||||
|
assert (pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL) == 0);
|
||||||
|
/* thread should cancel here */
|
||||||
|
sleep (5);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main (void)
|
||||||
|
{
|
||||||
|
void * result;
|
||||||
|
pthread_t t;
|
||||||
|
|
||||||
|
assert (pthread_create (&t, NULL, Thread, NULL) == 0);
|
||||||
|
assert (pthread_cancel (t) == 0);
|
||||||
|
assert (pthread_join (t, &result) == 0);
|
||||||
|
assert (has5secsleeped == 1);
|
||||||
|
assert (result == PTHREAD_CANCELED);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
71
winsup/testsuite/winsup.api/pthread/cancel8.c
Normal file
71
winsup/testsuite/winsup.api/pthread/cancel8.c
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
/*
|
||||||
|
* File: cancel8.c
|
||||||
|
*
|
||||||
|
* Test Synopsis: Test if usleep 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 has5secsleeped = 0;
|
||||||
|
|
||||||
|
static void *Thread(void *punused)
|
||||||
|
{
|
||||||
|
assert (pthread_setcancelstate (PTHREAD_CANCEL_DISABLE, NULL) == 0);
|
||||||
|
/* thread should usleep 5 seconds and not get canceled */
|
||||||
|
usleep(5000000);
|
||||||
|
has5secsleeped = 1;
|
||||||
|
assert (pthread_setcancelstate (PTHREAD_CANCEL_ENABLE, NULL) == 0);
|
||||||
|
/* thread should cancel here */
|
||||||
|
usleep(5000000);
|
||||||
|
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main (void)
|
||||||
|
{
|
||||||
|
void * result;
|
||||||
|
pthread_t t;
|
||||||
|
|
||||||
|
assert (pthread_create (&t, NULL, Thread, NULL) == 0);
|
||||||
|
assert (pthread_cancel (t) == 0);
|
||||||
|
assert (pthread_join (t, &result) == 0);
|
||||||
|
assert (has5secsleeped == 1);
|
||||||
|
assert (result == PTHREAD_CANCELED);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user