aboutsummaryrefslogtreecommitdiff
path: root/openmp/libompd/test/api_tests/test_ompd_get_thread_id.c
diff options
context:
space:
mode:
Diffstat (limited to 'openmp/libompd/test/api_tests/test_ompd_get_thread_id.c')
-rw-r--r--openmp/libompd/test/api_tests/test_ompd_get_thread_id.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/openmp/libompd/test/api_tests/test_ompd_get_thread_id.c b/openmp/libompd/test/api_tests/test_ompd_get_thread_id.c
new file mode 100644
index 0000000..dc71361
--- /dev/null
+++ b/openmp/libompd/test/api_tests/test_ompd_get_thread_id.c
@@ -0,0 +1,14 @@
+// RUN: %gdb-compile 2>&1 | tee %t.compile
+// RUN: %gdb-test -x %s.cmd %t 2>&1 | tee %t.out | FileCheck %s
+
+#include <omp.h>
+#include <stdio.h>
+
+int main() {
+ omp_set_num_threads(4);
+#pragma omp parallel
+ { printf("Parallel level 1, thread num = %d.\n", omp_get_thread_num()); }
+ return 0;
+}
+// CHECK-NOT: Failed
+// CHECK-NOT: Skip