diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/module_read_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/module_read_1.f90 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/testsuite/gfortran.dg/module_read_1.f90 b/gcc/testsuite/gfortran.dg/module_read_1.f90 index ad3e3d1dcde..50ee534ad29 100644 --- a/gcc/testsuite/gfortran.dg/module_read_1.f90 +++ b/gcc/testsuite/gfortran.dg/module_read_1.f90 @@ -22,8 +22,8 @@ end module foo program test use foo - if(len(pop(0)) /= 0) call abort() - if(len(pop(1)) /= 1) call abort() - if(len(push(0)) /= 0) call abort() - if(len(push(1)) /= 1) call abort() + if(len(pop(0)) /= 0) STOP 1 + if(len(pop(1)) /= 1) STOP 2 + if(len(push(0)) /= 0) STOP 3 + if(len(push(1)) /= 1) STOP 4 end program |