summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr69514_1.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pr69514_1.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/pr69514_1.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr69514_1.f90 b/gcc/testsuite/gfortran.dg/pr69514_1.f90
index d72a450dc58..561740fb35b 100644
--- a/gcc/testsuite/gfortran.dg/pr69514_1.f90
+++ b/gcc/testsuite/gfortran.dg/pr69514_1.f90
@@ -1,5 +1,5 @@
! { dg-do run }
program foo
real, parameter :: x(3) = 2.0 * [real :: 1, 2, 3 ]
- if (any(x /= [2., 4., 6.])) call abort
+ if (any(x /= [2., 4., 6.])) STOP 1
end program foo