summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr47878.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pr47878.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/pr47878.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr47878.f90 b/gcc/testsuite/gfortran.dg/pr47878.f90
index c9227f40007..f2a0f4d05fc 100644
--- a/gcc/testsuite/gfortran.dg/pr47878.f90
+++ b/gcc/testsuite/gfortran.dg/pr47878.f90
@@ -5,6 +5,6 @@
write (99, '(5i3)') 1, 2, 3
rewind (99)
read (99, '(5i3)') a
- if (any (a.ne.(/1, 2, 3, 0, 0/))) call abort
+ if (any (a.ne.(/1, 2, 3, 0, 0/))) STOP 1
close (99, status = 'delete')
end