diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/char_array_constructor.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/char_array_constructor.f90 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/char_array_constructor.f90 b/gcc/testsuite/gfortran.dg/char_array_constructor.f90 index 2cf3ae722c5..b3b375f79d9 100644 --- a/gcc/testsuite/gfortran.dg/char_array_constructor.f90 +++ b/gcc/testsuite/gfortran.dg/char_array_constructor.f90 @@ -7,8 +7,8 @@ end module program y use z - if (a(1) /= 'main ') call abort - if (a(2) /= 'main ') call abort - if (b(1) /= 'abcd ') call abort - if (b(2) /= 'efghij') call abort + if (a(1) /= 'main ') STOP 1 + if (a(2) /= 'main ') STOP 2 + if (b(1) /= 'abcd ') STOP 3 + if (b(2) /= 'efghij') STOP 4 end program y |