summaryrefslogtreecommitdiffstats
path: root/c/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/tests')
-rw-r--r--c/src/tests/psxtests/psx01/init.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/c/src/tests/psxtests/psx01/init.c b/c/src/tests/psxtests/psx01/init.c
index 497ba1f422..466446e6db 100644
--- a/c/src/tests/psxtests/psx01/init.c
+++ b/c/src/tests/psxtests/psx01/init.c
@@ -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 );