aboutsummaryrefslogtreecommitdiff
path: root/libgomp/testsuite/libgomp.fortran/icv-8.f90
blob: 9478c15859601d15d5365774b8004e0083197715 (plain)
1
2
3
4
5
6
7
8
9
10
! This tests 'set_num_teams_8' function.

program set_num_teams_8
  use omp_lib
  use, intrinsic :: iso_fortran_env
  integer(int64) :: x
  x = 42
  call omp_set_num_teams (x)
  if (omp_get_max_teams () .ne. 42) stop 1
end program