diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/count_init_expr.f03')
-rw-r--r-- | gcc/testsuite/gfortran.dg/count_init_expr.f03 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/count_init_expr.f03 b/gcc/testsuite/gfortran.dg/count_init_expr.f03 index ad7b74b96a9..148833afcfe 100644 --- a/gcc/testsuite/gfortran.dg/count_init_expr.f03 +++ b/gcc/testsuite/gfortran.dg/count_init_expr.f03 @@ -6,10 +6,10 @@ INTEGER, PARAMETER :: odd(4) = COUNT (MOD(m, 2) == 1, dim=1) INTEGER, PARAMETER :: even = COUNT (MOD(m, 2) == 0) - IF (sevens /= 1) CALL abort() - IF (ANY(odd /= [ 2,2,2,2 ])) CALL abort() - IF (even /= 8) CALL abort() + IF (sevens /= 1) STOP 1 + IF (ANY(odd /= [ 2,2,2,2 ])) STOP 2 + IF (even /= 8) STOP 3 ! check the kind parameter - IF (KIND(COUNT (m == 7, KIND=2)) /= 2) CALL abort() + IF (KIND(COUNT (m == 7, KIND=2)) /= 2) STOP 4 END |