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.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuites/psxtests/psx07/init.c b/testsuites/psxtests/psx07/init.c
index e46331d34f..830f82920c 100644
--- a/testsuites/psxtests/psx07/init.c
+++ b/testsuites/psxtests/psx07/init.c
@@ -32,6 +32,8 @@ void print_schedparam(
printf( "%s_POSIX_SPORADIC_SERVER is not defined\n" );
#endif
}
+
+extern rtems_configuration_table BSP_Configuration;
void *POSIX_Init(
void *argument
@@ -101,6 +103,11 @@ void *POSIX_Init(
status = pthread_create( &Task_id, &attr, Task_1, NULL );
assert( status == EINVAL );
+ attr.stacksize = BSP_Configuration.work_space_size;
+ puts( "Init: pthread_create - EINVAL (stacksize too large)" );
+ status = pthread_create( &Task_id, &attr, Task_1, NULL );
+ assert( status == EINVAL );
+
status = pthread_attr_init( &attr );
assert( !status );