summaryrefslogtreecommitdiffstats
path: root/test cases/common/184 openmp/main.f90
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/common/184 openmp/main.f90')
-rw-r--r--test cases/common/184 openmp/main.f909
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/common/184 openmp/main.f90 b/test cases/common/184 openmp/main.f90
new file mode 100644
index 0000000..d80f90f
--- /dev/null
+++ b/test cases/common/184 openmp/main.f90
@@ -0,0 +1,9 @@
+use, intrinsic :: iso_fortran_env, only: stderr=>error_unit
+use omp_lib
+
+if (omp_get_max_threads() /= 2) then
+ write(stderr, *) 'Max Fortran threads is', omp_get_max_threads(), 'not 2.'
+ stop 1
+endif
+
+end program