diff options
Diffstat (limited to 'gcc/testsuite/gfortran.dg/coarray/lock_1.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/coarray/lock_1.f90 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/testsuite/gfortran.dg/coarray/lock_1.f90 b/gcc/testsuite/gfortran.dg/coarray/lock_1.f90 index db4fbc8f7cb..1ec5984a4d3 100644 --- a/gcc/testsuite/gfortran.dg/coarray/lock_1.f90 +++ b/gcc/testsuite/gfortran.dg/coarray/lock_1.f90 @@ -17,15 +17,15 @@ UNLOCK(lock) stat = 99 LOCK(lock, stat=stat) -if (stat /= 0) call abort() +if (stat /= 0) STOP 1 stat = 99 UNLOCK(lock, stat=stat) -if (stat /= 0) call abort() +if (stat /= 0) STOP 2 if (this_image() == 1) then acquired = .false. LOCK (lock[this_image()], acquired_lock=acquired) - if (.not. acquired) call abort() + if (.not. acquired) STOP 3 UNLOCK (lock[1]) end if end |