added test case for non-NULL parameter to time()

This commit is contained in:
Joel Sherrill
1996-08-12 19:20:18 +00:00
parent 40cfab477e
commit d60d9505ca
2 changed files with 12 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ void *POSIX_Init(
int priority;
pthread_t thread_id;
time_t seconds;
time_t seconds1;
time_t remaining;
struct tm tm;
struct timespec tv;
@@ -59,6 +60,11 @@ void *POSIX_Init(
seconds = time( NULL );
printf( ctime( &seconds ) );
/* just to have the value copied out through the parameter */
seconds = time( &seconds1 );
assert( seconds == seconds1 );
/* check the time remaining */
printf( "Init: seconds remaining (%d)\n", (int)remaining );