*** empty log message ***

This commit is contained in:
Joel Sherrill
2009-07-20 01:02:17 +00:00
parent ac970794a4
commit f3ea48abbc
2 changed files with 17 additions and 2 deletions

View File

@@ -108,9 +108,23 @@ void Screen9()
RTEMS_INVALID_ADDRESS,
"rtems_port_create with illegal address"
);
puts( "TA1 - rtems_port_create - RTEMS_INVALID_ADDRESS" );
puts( "TA1 - rtems_port_create - bad range - RTEMS_INVALID_ADDRESS" );
#endif
status = rtems_port_create(
Port_name[ 1 ],
Internal_port_area,
External_port_area,
sizeof( Internal_port_area ),
NULL
);
fatal_directive_status(
status,
RTEMS_INVALID_ADDRESS,
"rtems_port_create null Id"
);
puts( "TA1 - rtems_port_create - null id - RTEMS_INVALID_ADDRESS" );
status = rtems_port_create(
Port_name[ 1 ],
Internal_port_area,

View File

@@ -156,7 +156,8 @@ TA1 - rtems_interrupt_catch - old isr RTEMS_INVALID_ADDRESS
TA1 - rtems_signal_send - RTEMS_INVALID_ID
TA1 - rtems_signal_send - RTEMS_NOT_DEFINED
TA1 - rtems_port_create - RTEMS_INVALID_NAME
TA1 - rtems_port_create - RTEMS_INVALID_ADDRESS
TA1 - rtems_port_create - bad range - RTEMS_INVALID_ADDRESS
TA1 - rtems_port_create - null id - RTEMS_INVALID_ADDRESS
TA1 - rtems_port_create - RTEMS_TOO_MANY
TA1 - rtems_port_delete - RTEMS_INVALID_ID
TA1 - rtems_port_ident - RTEMS_INVALID_NAME