summaryrefslogtreecommitdiffstats
path: root/testsuites/psxtests/psx07/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/psxtests/psx07/init.c')
-rw-r--r--testsuites/psxtests/psx07/init.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/testsuites/psxtests/psx07/init.c b/testsuites/psxtests/psx07/init.c
index 59a2e93174..0226f6df48 100644
--- a/testsuites/psxtests/psx07/init.c
+++ b/testsuites/psxtests/psx07/init.c
@@ -304,7 +304,8 @@ void *POSIX_Init(
puts( "Init: pthread_attr_getstacksize - SUCCESSFUL" );
status = pthread_attr_getstacksize( &attr, &stacksize );
assert( !status );
- printf( "Init: current stack size attribute = %ld\n", (long) stacksize );
+ if ( stacksize == (STACK_MINIMUM_SIZE * 2) )
+ printf( "Init: current stack size attribute is OK\n" );
/* exercise get and set stack address */