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.
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"
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;
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;
package Pck is
procedure Do_Nothing (A : System.Address);
+ procedure Do_Nothing (A : Wide_String);
+ procedure Do_Nothing (A : Wide_Wide_String);
end Pck;