From 221bd65cca147bf2c8cd1867db3c8e1fa0cae673 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 12 Aug 1996 20:00:02 +0000 Subject: added test case for stack too large --- testsuites/psxtests/psx07/init.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'testsuites') 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 ); -- cgit v1.2.3