Back to home page

LXR

 
 

    


Warning, /testsuites/ada/sptests/spname01/sptest.adb is written in an unsupported language. File is not indexed.

0001 -- SPDX-License-Identifier: BSD-2-Clause
0002 
0003 --
0004 --  SPTEST / BODY
0005 --
0006 --  DESCRIPTION:
0007 --
0008 --  This package is the implementation of the Ada Task Name test of the RTEMS
0009 --  Ada Single Processor Test Suite.
0010 --
0011 --  DEPENDENCIES: 
0012 --
0013 --  
0014 --
0015 --  COPYRIGHT (c) 1989-2009.
0016 --  On-Line Applications Research Corporation (OAR).
0017 --
0018 --  Redistribution and use in source and binary forms, with or without
0019 --  modification, are permitted provided that the following conditions
0020 --  are met:
0021 --  1. Redistributions of source code must retain the above copyright
0022 --     notice, this list of conditions and the following disclaimer.
0023 --  2. Redistributions in binary form must reproduce the above copyright
0024 --     notice, this list of conditions and the following disclaimer in the
0025 --     documentation and/or other materials provided with the distribution.
0026 --
0027 --  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0028 --  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0029 --  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0030 --  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
0031 --  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
0032 --  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
0033 --  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
0034 --  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
0035 --  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0036 --  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0037 --  POSSIBILITY OF SUCH DAMAGE.
0038 --
0039 
0040 with RTEMS;
0041 with RTEMS.OBJECT;
0042 with TEST_SUPPORT;
0043 with TEXT_IO;
0044 with System; use System;  -- for Null Pointer comparison
0045 
0046 package body SPTEST is
0047 
0048    task body AdaTask is
0049       Status     : RTEMS.Status_Codes;
0050       Pointer    : RTEMS.Address;
0051       StringName : String(1 .. 120) := (1 .. 120 => '*' );
0052       NewName    : constant String  := "Josiah";
0053    begin
0054 
0055       TEXT_IO.NEW_LINE( 2 );
0056       TEST_SUPPORT.ADA_TEST_BEGIN;
0057 
0058       RTEMS.Object.Get_Name( RTEMS.Self, StringName, Pointer );
0059       if Pointer = RTEMS.Null_Address then
0060          TEXT_IO.PUT_LINE( "Object_Get_Name_Failed" );
0061       else
0062          TEXT_IO.PUT_LINE( "My name is (" & StringName & ")" );
0063       end if;
0064 
0065       TEXT_IO.PUT_LINE( "Setting name to (Josiah)" );
0066       RTEMS.Object.Set_Name( RTEMS.Self, NewName, Status );
0067       TEST_SUPPORT.DIRECTIVE_FAILED( STATUS, "Object_Set_Name" );
0068 
0069       RTEMS.Object.Get_Name( RTEMS.Self, StringName, Pointer );
0070       if Pointer = RTEMS.Null_Address then
0071          TEXT_IO.PUT_LINE( "Object_Get_Name_Failed" );
0072       else
0073          TEXT_IO.PUT_LINE( "My name is (" & StringName & ")" );
0074       end if;
0075 
0076       TEST_SUPPORT.ADA_TEST_END;
0077 
0078       RTEMS.SHUTDOWN_EXECUTIVE( 0 );
0079 
0080    end AdaTask;
0081 
0082 end SPTEST;