added basic test cases for pthread_self and pthread_equal

This commit is contained in:
Joel Sherrill
1996-06-04 14:32:21 +00:00
parent 8f85799226
commit 15974b65ea
6 changed files with 60 additions and 32 deletions

View File

@@ -113,6 +113,11 @@ void *POSIX_Init(
printf( "sec (%d), nsec (%d) remaining\n", (int)tr.tv_sec, (int)tr.tv_nsec ); printf( "sec (%d), nsec (%d) remaining\n", (int)tr.tv_sec, (int)tr.tv_nsec );
assert( !tr.tv_sec && !tr.tv_nsec ); assert( !tr.tv_sec && !tr.tv_nsec );
/* get id of this thread */
Init_id = pthread_self();
printf( "Init's ID is 0x%08x\n", Init_id );
/* create a thread */ /* create a thread */
status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL ); status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL );

View File

@@ -43,4 +43,13 @@ void *Task_1_through_3(
/* global variables */ /* global variables */
#ifdef CONFIGURE_INIT
#define TEST_EXTERN
#else
#define TEST_EXTERN extern
#endif
TEST_EXTERN pthread_t Init_id;
TEST_EXTERN pthread_t Task_id;
/* end of include file */ /* end of include file */

View File

@@ -26,25 +26,25 @@ void *Task_1_through_3(
) )
{ {
int seconds; int seconds;
int status;
/* XXX temporary */ /* XXX temporary */
/* get id of this thread */
Task_id = pthread_self();
printf( "Task's ID is 0x%08x\n", Task_id );
status = pthread_equal( Task_id, Task_id );
if ( status )
puts( "pthread_equal match case passed" );
assert( status );
status = pthread_equal( Init_id, Task_id );
if ( !status )
puts( "pthread_equal different case passed" );
assert( !status );
puts( "*** END OF POSIX TEST 1 ***" ); puts( "*** END OF POSIX TEST 1 ***" );
exit( 0 ); exit( 0 );
for ( ; ; ) {
/* grab the tod */
/* if we have run longer 35 seconds exit */
if ( seconds >= 35 ) {
puts( "*** END OF POSIX TEST 1 ***" );
exit( 0 );
}
/* put our task number and the current time */
/* delay based on our thread number */
}
} }

View File

@@ -113,6 +113,11 @@ void *POSIX_Init(
printf( "sec (%d), nsec (%d) remaining\n", (int)tr.tv_sec, (int)tr.tv_nsec ); printf( "sec (%d), nsec (%d) remaining\n", (int)tr.tv_sec, (int)tr.tv_nsec );
assert( !tr.tv_sec && !tr.tv_nsec ); assert( !tr.tv_sec && !tr.tv_nsec );
/* get id of this thread */
Init_id = pthread_self();
printf( "Init's ID is 0x%08x\n", Init_id );
/* create a thread */ /* create a thread */
status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL ); status = pthread_create( &thread_id, NULL, Task_1_through_3, NULL );

View File

@@ -43,4 +43,13 @@ void *Task_1_through_3(
/* global variables */ /* global variables */
#ifdef CONFIGURE_INIT
#define TEST_EXTERN
#else
#define TEST_EXTERN extern
#endif
TEST_EXTERN pthread_t Init_id;
TEST_EXTERN pthread_t Task_id;
/* end of include file */ /* end of include file */

View File

@@ -26,25 +26,25 @@ void *Task_1_through_3(
) )
{ {
int seconds; int seconds;
int status;
/* XXX temporary */ /* XXX temporary */
/* get id of this thread */
Task_id = pthread_self();
printf( "Task's ID is 0x%08x\n", Task_id );
status = pthread_equal( Task_id, Task_id );
if ( status )
puts( "pthread_equal match case passed" );
assert( status );
status = pthread_equal( Init_id, Task_id );
if ( !status )
puts( "pthread_equal different case passed" );
assert( !status );
puts( "*** END OF POSIX TEST 1 ***" ); puts( "*** END OF POSIX TEST 1 ***" );
exit( 0 ); exit( 0 );
for ( ; ; ) {
/* grab the tod */
/* if we have run longer 35 seconds exit */
if ( seconds >= 35 ) {
puts( "*** END OF POSIX TEST 1 ***" );
exit( 0 );
}
/* put our task number and the current time */
/* delay based on our thread number */
}
} }