mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-27 22:48:57 +08:00
extend scope of testing in gdb.ada/arrayptr
We add testing of taking a slice of an array access. And we also introduce the same amount of testing, but with an access to a constrained array. gdb/testsuite/ChangeLog: * gdb.ada/arrayptr/foo.adb: Add access to constrained array. * gdb.ada/arrayptr.exp: Add new tests.
This commit is contained in:
@ -20,7 +20,14 @@ procedure Foo is
|
||||
|
||||
String_P : String_Access := new String'("Hello");
|
||||
Null_String : String_Access := null;
|
||||
|
||||
-- Same situation, but constrained array.
|
||||
type Little_Array is array (1 .. 10) of Integer;
|
||||
type Little_Array_Ptr is access all Little_Array;
|
||||
Arr_Ptr: Little_Array_Ptr :=
|
||||
new Little_Array'(21, 22, 23, 24, 25, 26, 27, 28, 29, 30);
|
||||
begin
|
||||
Do_Nothing (String_P'Address); -- STOP
|
||||
Do_Nothing (Null_String'Address);
|
||||
Do_Nothing (Arr_Ptr'Address);
|
||||
end Foo;
|
||||
|
Reference in New Issue
Block a user