1 // RUN: %gdb-compile 2>&1 | tee %t.compile
2 // RUN: env OMP_SCHEDULE=static %gdb-run 2>&1 | tee %t.out | FileCheck %s
4 #include "../ompt_plugin.h"
11 #pragma omp parallel for num_threads(2)
12 for (i
= 0; i
< 10; i
++)
17 omp_set_max_active_levels(10);
18 #pragma omp parallel num_threads(2)
20 if (omp_get_thread_num() == 0)
28 printf("Process %d started.\n", getpid());
33 // CHECK-NOT: OMPT-OMPD mismatch
34 // CHECK-NOT: Python Exception
35 // CHECK-NOT: The program is not being run.