diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/default_format_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/default_format_1.f90 | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/testsuite/gfortran.dg/default_format_1.f90 b/gcc/testsuite/gfortran.dg/default_format_1.f90 index 65307bb4719..9f88d3f45e6 100644 --- a/gcc/testsuite/gfortran.dg/default_format_1.f90 +++ b/gcc/testsuite/gfortran.dg/default_format_1.f90 @@ -11,16 +11,16 @@ include "default_format_1.inc" program main use test_default_format - if (test (1.0_4, 0) /= 0) call abort - if (test (tiny(0.0_4), 1) /= 0) call abort - if (test (-tiny(0.0_4), -1) /= 0) call abort - if (test (huge(0.0_4), -1) /= 0) call abort - if (test (-huge(0.0_4), 1) /= 0) call abort + if (test (1.0_4, 0) /= 0) STOP 1 + if (test (tiny(0.0_4), 1) /= 0) STOP 2 + if (test (-tiny(0.0_4), -1) /= 0) STOP 3 + if (test (huge(0.0_4), -1) /= 0) STOP 4 + if (test (-huge(0.0_4), 1) /= 0) STOP 5 - if (test (1.0_8, 0) /= 0) call abort - if (test (tiny(0.0_8), 1) /= 0) call abort - if (test (-tiny(0.0_8), -1) /= 0) call abort - if (test (huge(0.0_8), -1) /= 0) call abort - if (test (-huge(0.0_8), 1) /= 0) call abort + if (test (1.0_8, 0) /= 0) STOP 6 + if (test (tiny(0.0_8), 1) /= 0) STOP 7 + if (test (-tiny(0.0_8), -1) /= 0) STOP 8 + if (test (huge(0.0_8), -1) /= 0) STOP 9 + if (test (-huge(0.0_8), 1) /= 0) STOP 10 end program main ! |