mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-03 02:30:58 +00:00
16 lines
279 B
Fortran
16 lines
279 B
Fortran
! Verify that an unconditional "call abort" inside an OpenACC parallel region
|
|
! does the right thing.
|
|
|
|
program main
|
|
implicit none
|
|
|
|
print *, "CheCKpOInT"
|
|
!$acc parallel
|
|
call abort
|
|
!$acc end parallel
|
|
|
|
end program main
|
|
|
|
! { dg-output "CheCKpOInT" }
|
|
! { dg-shouldfail "" }
|