added test case for stack too large

This commit is contained in:
Joel Sherrill
1996-08-12 20:00:02 +00:00
parent 5f08fd6179
commit 221bd65cca
2 changed files with 14 additions and 0 deletions

View File

@@ -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 );

View File

@@ -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 );