diff options
author | Joel Brobecker <brobecker@gnat.com> | 2011-01-14 19:33:19 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2011-01-14 19:33:19 +0000 |
commit | 2c3e6e2466789347868576968e9d7acce93d5201 (patch) | |
tree | 69796984aad976fd370b1a95e5dcf12a45a99b0b /gdb/testsuite/gdb.ada/widewide | |
parent | 447b483c37a0e0a04fd88756f1f731e6a28217cd (diff) | |
download | gdb-2c3e6e2466789347868576968e9d7acce93d5201.zip gdb-2c3e6e2466789347868576968e9d7acce93d5201.tar.gz gdb-2c3e6e2466789347868576968e9d7acce93d5201.tar.bz2 |
new testcase for Ada Wide Wide Characters and Strings
gdb/testsuite/ChangeLog:
* gdb.ada/widewide: New testcase.
Diffstat (limited to 'gdb/testsuite/gdb.ada/widewide')
-rw-r--r-- | gdb/testsuite/gdb.ada/widewide/foo.adb | 27 | ||||
-rw-r--r-- | gdb/testsuite/gdb.ada/widewide/pck.adb | 23 | ||||
-rw-r--r-- | gdb/testsuite/gdb.ada/widewide/pck.ads | 22 |
3 files changed, 72 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.ada/widewide/foo.adb b/gdb/testsuite/gdb.ada/widewide/foo.adb new file mode 100644 index 0000000..056f1f0 --- /dev/null +++ b/gdb/testsuite/gdb.ada/widewide/foo.adb @@ -0,0 +1,27 @@ +-- Copyright 2011 Free Software Foundation, Inc. +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. + +with Pck; use Pck; + +procedure Foo is + Some_Easy : Wide_Wide_Character := 'J'; + Some_Larger : Wide_Wide_Character := Wide_Wide_Character'Val(16#beef#); + Some_Big : Wide_Wide_Character := Wide_Wide_Character'Val(16#00dabeef#); + My_WWS : Wide_Wide_String := " helo"; +begin + Do_Nothing (Some_Easy'Address); -- START + Do_Nothing (Some_Larger'Address); + Do_Nothing (Some_Big'Address); +end Foo; diff --git a/gdb/testsuite/gdb.ada/widewide/pck.adb b/gdb/testsuite/gdb.ada/widewide/pck.adb new file mode 100644 index 0000000..a9c836b --- /dev/null +++ b/gdb/testsuite/gdb.ada/widewide/pck.adb @@ -0,0 +1,23 @@ +-- Copyright 2011 Free Software Foundation, Inc. +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. + +package body Pck is + + procedure Do_Nothing (A : System.Address) is + begin + null; + end Do_Nothing; + +end Pck; diff --git a/gdb/testsuite/gdb.ada/widewide/pck.ads b/gdb/testsuite/gdb.ada/widewide/pck.ads new file mode 100644 index 0000000..c48415a --- /dev/null +++ b/gdb/testsuite/gdb.ada/widewide/pck.ads @@ -0,0 +1,22 @@ +-- Copyright 2011 Free Software Foundation, Inc. +-- +-- This program is free software; you can redistribute it and/or modify +-- it under the terms of the GNU General Public License as published by +-- the Free Software Foundation; either version 3 of the License, or +-- (at your option) any later version. +-- +-- This program is distributed in the hope that it will be useful, +-- but WITHOUT ANY WARRANTY; without even the implied warranty of +-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +-- GNU General Public License for more details. +-- +-- You should have received a copy of the GNU General Public License +-- along with this program. If not, see <http://www.gnu.org/licenses/>. + +with System; + +package Pck is + + procedure Do_Nothing (A : System.Address); + +end Pck; |