summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90')
-rw-r--r--gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f906
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90
index d06167e6814..db07237aadf 100644
--- a/gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90
+++ b/gcc/testsuite/gfortran.fortran-torture/execute/arithmeticif.f90
@@ -19,7 +19,7 @@ program testwrite
integer i
integer testif
- if (testif (-10) .ne. -1) call abort
- if (testif (0) .ne. 0) call abort
- if (testif (10) .ne. 1) call abort
+ if (testif (-10) .ne. -1) STOP 1
+ if (testif (0) .ne. 0) STOP 2
+ if (testif (10) .ne. 1) STOP 3
end program