Add another test for Ada Wide_Wide_String

In an earlier patch, I had written that I wanted to add this test:

      ptype Wide_Wide_String'("literal")

... but that it failed with the distro GNAT.  Further investigation
showed that it could be made to work by adding a function using
Wide_Wide_String to the program -- this caused the type to end up in
the debug info.

This patch adds the test.  I'm checking this in.
This commit is contained in:
Tom Tromey
2022-03-16 09:50:17 -06:00
parent c9178f285a
commit d32cbc04e3
4 changed files with 17 additions and 1 deletions

View File

@ -59,3 +59,6 @@ gdb_test "print my_wws" " = \"bcllo\"" \
gdb_test "print 'x' & my_ws" " = \"xwide\""
gdb_test "print my_ws & 'y'" " = \"widey\""
gdb_test "ptype wide_wide_string'(\"wws\")" \
"array \\(1 \\.\\. 3\\) of wide_wide_character"

View File

@ -24,6 +24,7 @@ procedure Foo is
begin
Do_Nothing (Some_Easy'Address); -- START
Do_Nothing (Some_Larger'Address);
Do_Nothing (My_Ws'Address);
Do_Nothing (My_Ws);
Do_Nothing (My_WWS);
Do_Nothing (Some_Big'Address);
end Foo;

View File

@ -20,4 +20,14 @@ package body Pck is
null;
end Do_Nothing;
procedure Do_Nothing (A : Wide_String) is
begin
null;
end Do_Nothing;
procedure Do_Nothing (A : Wide_Wide_String) is
begin
null;
end Do_Nothing;
end Pck;

View File

@ -18,5 +18,7 @@ with System;
package Pck is
procedure Do_Nothing (A : System.Address);
procedure Do_Nothing (A : Wide_String);
procedure Do_Nothing (A : Wide_Wide_String);
end Pck;