aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/190 openmp/main.f90
blob: c062d8691053e16225fc9b7b7a7de6316b13a894 (plain)
1
2
3
4
5
6
7
8
program main
    if (omp_get_max_threads() .eq. 2) then
        stop 0
    else
        print *, 'Max threads is', omp_get_max_threads(), 'not 2.'
        stop 1
    endif
end program main