summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/deferred_character_6.f90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/deferred_character_6.f90')
-rw-r--r--gcc/testsuite/gfortran.dg/deferred_character_6.f908
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/deferred_character_6.f90 b/gcc/testsuite/gfortran.dg/deferred_character_6.f90
index 94afa0c0f28..44746b31b33 100644
--- a/gcc/testsuite/gfortran.dg/deferred_character_6.f90
+++ b/gcc/testsuite/gfortran.dg/deferred_character_6.f90
@@ -39,16 +39,16 @@ program thistest
test_vary%string = str
- if (test_vary%string .ne. str) call abort
+ if (test_vary%string .ne. str) STOP 1
! This previously gave a blank string.
my_stuff%string = test_vary
- if (my_stuff%string .ne. str) call abort
+ if (my_stuff%string .ne. str) STOP 2
test_char = test_vary
- if (test_char .ne. str) call abort
+ if (test_char .ne. str) STOP 3
my_stuff = test_vary
- if (my_stuff%string .ne. str) call abort
+ if (my_stuff%string .ne. str) STOP 4
end program thistest