summaryrefslogtreecommitdiffstats
path: root/testsuites/sptests/sp09/screen05.c
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/sptests/sp09/screen05.c')
-rw-r--r--testsuites/sptests/sp09/screen05.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/testsuites/sptests/sp09/screen05.c b/testsuites/sptests/sp09/screen05.c
index 3747de44af..08f92781aa 100644
--- a/testsuites/sptests/sp09/screen05.c
+++ b/testsuites/sptests/sp09/screen05.c
@@ -22,6 +22,7 @@ void Screen5()
{
rtems_status_code status;
+ /* invalid name */
status = rtems_semaphore_create(
0,
1,
@@ -36,6 +37,22 @@ void Screen5()
);
puts( "TA1 - rtems_semaphore_create - RTEMS_INVALID_NAME" );
+ /* NULL Id parameter */
+ status = rtems_semaphore_create(
+ Semaphore_name[ 1 ],
+ 1,
+ RTEMS_DEFAULT_ATTRIBUTES,
+ RTEMS_NO_PRIORITY,
+ NULL
+ );
+ fatal_directive_status(
+ status,
+ RTEMS_INVALID_ADDRESS,
+ "rtems_semaphore_create with NULL param"
+ );
+ puts( "TA1 - rtems_semaphore_create - RTEMS_INVALID_ADDRESS" );
+
+ /* OK */
status = rtems_semaphore_create(
Semaphore_name[ 1 ],
1,