summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/promotion.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/promotion.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/promotion.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/promotion.f90 b/gcc/testsuite/gfortran.dg/promotion.f90
index fc46d853e94..0b87bf2a644 100644
--- a/gcc/testsuite/gfortran.dg/promotion.f90
+++ b/gcc/testsuite/gfortran.dg/promotion.f90
@@ -6,8 +6,8 @@ program a
integer i
real x
double precision d
- if (kind(l) /= 8) call abort
- if (kind(i) /= 8) call abort
- if (kind(x) /= 8) call abort
- if (kind(d) /= 8) call abort
+ if (kind(l) /= 8) STOP 1
+ if (kind(i) /= 8) STOP 2
+ if (kind(x) /= 8) STOP 3
+ if (kind(d) /= 8) STOP 4
end program a