diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2008-05-20 20:59:44 +0000 |
---|---|---|
committer | Samuel Tardieu <sam@gcc.gnu.org> | 2008-05-20 20:59:44 +0000 |
commit | ede2e423f8612d5a09c1d34cdf1c5f90763519ba (patch) | |
tree | b49d37d880aa22374b99590d6e2d67c237185bf8 | |
parent | 66ae7a814ceaffcc233286d30e133c3bcbf150f0 (diff) | |
download | gcc-ede2e423f8612d5a09c1d34cdf1c5f90763519ba.zip gcc-ede2e423f8612d5a09c1d34cdf1c5f90763519ba.tar.gz gcc-ede2e423f8612d5a09c1d34cdf1c5f90763519ba.tar.bz2 |
modular.adb: Remove test...
gcc/testsuite/
* gnat.dg/modular.adb: Remove test, gnat.dg/modular1.adb already
checks that the bug is fixed and is more concise.
From-SVN: r135679
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gnat.dg/modular.adb | 16 |
2 files changed, 5 insertions, 16 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 092b122..b000278 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,5 +1,10 @@ 2008-05-20 Samuel Tardieu <sam@rfc1149.net> + * gnat.dg/modular.adb: Remove test, gnat.dg/modular1.adb already + checks that the bug is fixed and is more concise. + +2008-05-20 Samuel Tardieu <sam@rfc1149.net> + PR ada/35791 * gnat.dg/check_displace_generation.adb: New. diff --git a/gcc/testsuite/gnat.dg/modular.adb b/gcc/testsuite/gnat.dg/modular.adb deleted file mode 100644 index 1eff333..0000000 --- a/gcc/testsuite/gnat.dg/modular.adb +++ /dev/null @@ -1,16 +0,0 @@ --- { dg-do run } -with Ada.Text_IO; -procedure Modular is - type T1 is mod 9; - package T1_IO is new Ada.Text_IO.Modular_IO(T1); - X: T1 := 8; - J1: constant := 5; -begin - for J2 in 5..5 loop - pragma Assert(X*(2**J1) = X*(2**J2)); - if X*(2**J1) /= X*(2**J2) then - Ada.Text_IO.Put_Line("Failed"); - raise Program_Error; - end if; - end loop; -end Modular; |