coarray_41.f90: Add "-latomic" option if libatomic_available.
[official-gcc.git] / gcc / testsuite / gfortran.dg / scratch_1.f90
blobfd888cc98051b7616823fda226b7ed3f88f46fae
1 ! { dg-do run }
2 ! { dg-skip-if "Too big for local store" { spu-*-* } { "*" } { "" } }
3 ! Check that we can open more than 26 scratch files concurrently
4 integer :: i
5 do i = 1, 30
6 print *, i
7 open(100+i,status="scratch")
8 end do
9 end