mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-26 06:08:20 +00:00
*** empty log message ***
This commit is contained in:
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user