diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gnat.dg/test_fixed_io.adb | |
download | cbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.bz2 cbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gnat.dg/test_fixed_io.adb')
-rw-r--r-- | gcc/testsuite/gnat.dg/test_fixed_io.adb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gcc/testsuite/gnat.dg/test_fixed_io.adb b/gcc/testsuite/gnat.dg/test_fixed_io.adb new file mode 100644 index 000000000..823e172d5 --- /dev/null +++ b/gcc/testsuite/gnat.dg/test_fixed_io.adb @@ -0,0 +1,34 @@ +-- { dg-do run } + +with Ada.Text_IO; use Ada.Text_IO; + +procedure test_fixed_io is + type FX is delta 0.0001 range -3.0 .. 250.0; + for FX'Small use 0.0001; + package FXIO is new Fixed_IO (FX); + use FXIO; + ST : String (1 .. 11) := (others => ' '); + ST2 : String (1 .. 12) := (others => ' '); + + N : constant FX := -2.345; +begin + begin + Put (ST, N, 6, 2); + Put_Line ("*ERROR* Test1: Exception Layout_Error was not raised"); + Put_Line ("ST = """ & ST & '"'); + exception + when Layout_Error => + null; + when others => + Put_Line ("Test1: Unexpected exception"); + end; + + begin + Put (ST2, N, 6, 2); + exception + when Layout_Error => + Put_Line ("*ERROR* Test2: Exception Layout_Error was raised"); + when others => + Put_Line ("Test2: Unexpected exception"); + end; +end; |