/* * Copyright (c) 2005, Bull S.A.. All rights reserved. * Created by: Sebastien Decugis * This program is free software; you can redistribute it and/or modify it * under the terms of version 2 of the GNU General Public License as * published by the Free Software Foundation. * * This program is distributed in the hope that it would be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * You should have received a copy of the GNU General Public License along * with this program; if not, write the Free Software Foundation, Inc., 59 * Temple Place - Suite 330, Boston MA 02111-1307, USA. * This sample test aims to check the following assertion: * * pthread_join() returns only when the joined thread has terminated. * The steps are: * -> create a thread * -> the thread yields then read clock and exit * -> check the read clock value is before pthread_join return. * The test fails if the time read is not coherent */ /* We are testing conformance to IEEE Std 1003.1, 2003 Edition */ #define _POSIX_C_SOURCE 200112L /********************************************************************************************/ /****************************** standard includes *****************************************/ /********************************************************************************************/ #include #include #include #include #include #include #include #include /********************************************************************************************/ /****************************** Test framework *****************************************/ /********************************************************************************************/ #include "testfrmw.h" #include "testfrmw.c" /* This header is responsible for defining the following macros: * UNRESOLVED(ret, descr); * where descr is a description of the error and ret is an int (error code for example) * FAILED(descr); * where descr is a short text saying why the test has failed. * PASSED(); * No parameter. * * Both three macros shall terminate the calling process. * The testcase shall not terminate in any other maneer. * * The other file defines the functions * void output_init() * void output(char * string, ...) * * Those may be used to output information. */ /********************************************************************************************/ /********************************** Configuration ******************************************/ /********************************************************************************************/ #ifndef VERBOSE #define VERBOSE 1 #endif /********************************************************************************************/ /*********************************** Helper *****************************************/ /********************************************************************************************/ #include "threads_scenarii.c" /* this file defines: * scenarii: array of struct __scenario type. * NSCENAR : macro giving the total # of scenarii * scenar_init(): function to call before use the scenarii array. * scenar_fini(): function to call after end of use of the scenarii array. */ /********************************************************************************************/ /*********************************** Test case *****************************************/ /********************************************************************************************/ /* thread function */ void * threaded ( void * arg ) { int ret = 0; int i; /* yield the control some times */ for ( i = 0; i < 10; i++ ) sched_yield(); /* Now tell we're done */ ret = clock_gettime( CLOCK_REALTIME, arg ); if ( ret != 0 ) { UNRESOLVED( errno, "Failed to get clock time" ); } return NULL; } /* The main test function. */ int main( int argc, char *argv[] ) { int ret = 0; pthread_t child; struct timespec ts_pre, ts_th, ts_post; /* Initialize output routine */ output_init(); /* Initialize thread attribute objects */ scenar_init(); for ( sc = 0; sc < NSCENAR; sc++ ) { #if VERBOSE > 0 output( "-----\n" ); output( "Starting test with scenario (%i): %s\n", sc, scenarii[ sc ].descr ); #endif ret = clock_gettime( CLOCK_REALTIME, &ts_pre ); if ( ret != 0 ) { UNRESOLVED( errno, "Failed to read clock" ); } ret = pthread_create( &child, &scenarii[ sc ].ta, threaded, &ts_th ); switch ( scenarii[ sc ].result ) { case 0: /* Operation was expected to succeed */ if ( ret != 0 ) { UNRESOLVED( ret, "Failed to create this thread" ); } break; case 1: /* Operation was expected to fail */ if ( ret == 0 ) { UNRESOLVED( -1, "An error was expected but the thread creation succeeded" ); } break; case 2: /* We did not know the expected result */ default: #if VERBOSE > 0 if ( ret == 0 ) { output( "Thread has been created successfully for this scenario\n" ); } else { output( "Thread creation failed with the error: %s\n", strerror( ret ) ); } #endif } if ( ret == 0 ) /* The new thread is running */ { ret = pthread_join( child, NULL ); if ( ret != 0 ) { UNRESOLVED( ret, "Unable to join a thread" ); } ret = clock_gettime( CLOCK_REALTIME, &ts_post ); if ( ret != 0 ) { UNRESOLVED( errno, "Failed to read clock" ); } /* Now check that ts_pre <= ts_th <= ts_post */ if ( ( ts_th.tv_sec < ts_pre.tv_sec ) || ( ( ts_th.tv_sec == ts_pre.tv_sec ) && ( ts_th.tv_nsec < ts_pre.tv_nsec ) ) ) { output( "Pre : %d.%09d\n", ts_pre.tv_sec, ts_pre.tv_nsec ); output( "child: %d.%09d\n", ts_th.tv_sec, ts_th.tv_nsec ); output( "Post : %d.%09d\n", ts_post.tv_sec, ts_post.tv_nsec ); FAILED( "Child returned before its creation ???" ); } if ( ( ts_post.tv_sec < ts_th.tv_sec ) || ( ( ts_post.tv_sec == ts_th.tv_sec ) && ( ts_post.tv_nsec < ts_th.tv_nsec ) ) ) { output( "Pre : %d.%09d\n", ts_pre.tv_sec, ts_pre.tv_nsec ); output( "child: %d.%09d\n", ts_th.tv_sec, ts_th.tv_nsec ); output( "Post : %d.%09d\n", ts_post.tv_sec, ts_post.tv_nsec ); FAILED( "pthread_join returned before child terminated" ); } } } scenar_fini(); #if VERBOSE > 0 output( "-----\n" ); output( "All test data destroyed\n" ); output( "Test PASSED\n" ); #endif PASSED; }