summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90')
-rw-r--r--gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90 b/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90
index 4e0060702f3..4a3a70e1d28 100644
--- a/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90
+++ b/gcc/testsuite/gfortran.fortran-torture/execute/write_logical.f90
@@ -7,17 +7,17 @@
false = .FALSE.
b = ''
write (b, '(L1)') true
- if (b(1:1) .ne. 'T') call abort
+ if (b(1:1) .ne. 'T') STOP 1
b = ''
write (b, '(L1)') false
- if (b(1:1) .ne. 'F') call abort
+ if (b(1:1) .ne. 'F') STOP 2
b = ''
write(b, '(L4)') true
- if (b(1:4) .ne. ' T') call abort
+ if (b(1:4) .ne. ' T') STOP 3
b = ''
write(b, '(L4)') false
- if (b(1:4) .ne. ' F') call abort
+ if (b(1:4) .ne. ' F') STOP 4
end