Skip to content

Commit c46ccb8

Browse files
committed
[OpenMP][tests][NFC] Update test status for gcc 11 and 12
gcc 11 introduced support for depend clause, but the gomp interface of libomp does not yet handle the information. Also remove -fopenmp-version=50, which is no longer needed for clang, but not supported by gcc.
1 parent b95f66a commit c46ccb8

File tree

6 files changed

+23
-13
lines changed

6 files changed

+23
-13
lines changed

openmp/runtime/test/ompt/tasks/task_early_fulfill.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
// RUN: %libomp-compile -fopenmp-version=50 && env OMP_NUM_THREADS='3' \
1+
// RUN: %libomp-compile && env OMP_NUM_THREADS='3' \
22
// RUN: %libomp-run | %sort-threads | FileCheck %s
33
// REQUIRES: ompt
44

55
// Checked gcc 10.1 still does not support detach clause on task construct.
66
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9, gcc-10
7+
// gcc 11 introduced detach clause, but gomp interface in libomp has no support
8+
// XFAIL: gcc-11, gcc-12
79
// clang supports detach clause since version 11.
810
// UNSUPPORTED: clang-10, clang-9, clang-8, clang-7
911
// icc compiler does not support detach clause.

openmp/runtime/test/ompt/tasks/task_late_fulfill.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
// RUN: %libomp-compile -fopenmp-version=50 && env OMP_NUM_THREADS='3' \
1+
// RUN: %libomp-compile && env OMP_NUM_THREADS='3' \
22
// RUN: %libomp-run | %sort-threads | FileCheck %s
33
// REQUIRES: ompt
44

55
// Checked gcc 10.1 still does not support detach clause on task construct.
66
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9, gcc-10
7+
// gcc 11 introduced detach clause, but gomp interface in libomp has no support
8+
// XFAIL: gcc-11, gcc-12
79
// clang supports detach clause since version 11.
810
// UNSUPPORTED: clang-10, clang-9, clang-8, clang-7
911
// icc compiler does not support detach clause.

openmp/runtime/test/ompt/tasks/taskwait-depend.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ int main() {
7070
// CHECK-SAME: parent_task_frame.reenter={{0x[0-f]+}},
7171
// CHECK-SAME: new_task_id=[[SECOND_TASK:[0-f]+]],
7272
// CHECK-SAME: codeptr_ra=[[RETURN_ADDRESS:0x[0-f]+]]{{[0-f][0-f]}},
73-
// CHECK-SAME: task_type=ompt_task_explicit|ompt_task_undeferred|
74-
// CHECK-SAME: ompt_task_mergeable=1207959556, has_dependences=yes
73+
// CHECK-SAME: task_type=ompt_task_taskwait|ompt_task_undeferred|
74+
// CHECK-SAME: ompt_task_mergeable=1207959568, has_dependences=yes
7575

7676
// CHECK: {{^}}[[MASTER_ID]]: ompt_event_dependences:
7777
// CHECK-SAME: task_id=[[SECOND_TASK]], deps=[([[ADDRX]],

openmp/runtime/test/tasking/omp_detach_taskwait.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
// RUN: %libomp-compile -fopenmp-version=50 && env OMP_NUM_THREADS='3' %libomp-run
2-
// RUN: %libomp-compile -fopenmp-version=50 && env OMP_NUM_THREADS='1' %libomp-run
1+
// RUN: %libomp-compile && env OMP_NUM_THREADS='3' %libomp-run
2+
// RUN: %libomp-compile && env OMP_NUM_THREADS='1' %libomp-run
33

44
// Checked gcc 10.1 still does not support detach clause on task construct.
55
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9, gcc-10
6+
// gcc 11 introduced detach clause, but gomp interface in libomp has no support
7+
// XFAIL: gcc-11, gcc-12
68
// clang supports detach clause since version 11.
79
// UNSUPPORTED: clang-10, clang-9, clang-8, clang-7
810
// icc compiler does not support detach clause.

openmp/tools/archer/tests/task/task_early_fulfill.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
// RUN: %libarcher-run
33
//| FileCheck %s
44

5-
// Checked gcc 9.2 still does not support detach clause on task construct.
6-
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9
5+
// Checked gcc 10.1 still does not support detach clause on task construct.
6+
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9, gcc-10
7+
// gcc 11 introduced detach clause, but gomp interface in libomp has no support
8+
// XFAIL: gcc-11, gcc-12
79
// clang supports detach clause since version 11.
810
// UNSUPPORTED: clang-10, clang-9, clang-8, clang-7
911
// icc compiler does not support detach clause.

openmp/tools/archer/tests/task/task_late_fulfill.c

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
// RUN: %libarcher-compile -fopenmp-version=50 && env OMP_NUM_THREADS='3' \
22
// RUN: %libarcher-run-race | FileCheck %s
33

4-
// Checked gcc 9.2 still does not support detach clause on task construct.
5-
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9
4+
// Checked gcc 10.1 still does not support detach clause on task construct.
5+
// UNSUPPORTED: gcc-4, gcc-5, gcc-6, gcc-7, gcc-8, gcc-9, gcc-10
6+
// gcc 11 introduced detach clause, but gomp interface in libomp has no support
7+
// XFAIL: gcc-11, gcc-12
68
// clang supports detach clause since version 11.
79
// UNSUPPORTED: clang-10, clang-9, clang-8, clang-7
810
// icc compiler does not support detach clause.
@@ -45,10 +47,10 @@ int main() {
4547
}
4648

4749
// no race for a++ in line 32:
48-
// CHECK-NOT: #0 {{.*}}task_late_fulfill.c:35
50+
// CHECK-NOT: #0 {{.*}}task_late_fulfill.c:37
4951

5052
// CHECK: WARNING: ThreadSanitizer: data race
5153
// CHECK-NEXT: {{(Write|Read)}} of size 4
52-
// CHECK-NEXT: #0 {{.*}}task_late_fulfill.c:31
54+
// CHECK-NEXT: #0 {{.*}}task_late_fulfill.c:33
5355
// CHECK: Previous write of size 4
54-
// CHECK-NEXT: #0 {{.*}}task_late_fulfill.c:40
56+
// CHECK-NEXT: #0 {{.*}}task_late_fulfill.c:42

0 commit comments

Comments
 (0)