summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/string.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.fortran-torture/execute/string.f90')
-rw-r--r--gcc/testsuite/gfortran.fortran-torture/execute/string.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/string.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/string.f90
index f220f4a477b..c6aa9b2af4d 100644
--- a/gcc/testsuite/gfortran.fortran-torture/execute/string.f90
+++ b/gcc/testsuite/gfortran.fortran-torture/execute/string.f90
@@ -8,8 +8,8 @@ program string
b = 'World'
c = a//b
- if (c .ne. 'HelloWorld') call abort
- if (c .eq. 'WorldHello') call abort
- if (a//'World' .ne. 'HelloWorld') call abort
- if (a .ge. b) call abort
+ if (c .ne. 'HelloWorld') STOP 1
+ if (c .eq. 'WorldHello') STOP 2
+ if (a//'World' .ne. 'HelloWorld') STOP 3
+ if (a .ge. b) STOP 4
end program