Skip to content

Commit 86f70ae

Browse files
committed
updated check-not's in tests
1 parent a66299d commit 86f70ae

15 files changed

+64
-89
lines changed

runtime/test/ompt/cancel/cancel_parallel.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ int main()
2020

2121

2222
// Check if libomp supports the callbacks for this test.
23+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
2324
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_cancel'
2425

2526
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/cancel/cancel_taskgroup.c

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,11 @@ int main()
4242

4343

4444
// Check if libomp supports the callbacks for this test.
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
46-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
47-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
48-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
49-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
50-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
51-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
52-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
53-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_begin'
54-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_switch'
55-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_end'
45+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_master'
46+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
47+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_schedule'
48+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_cancel'
49+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_thread_begin'
5650

5751

5852
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/cancel/cancel_worksharing.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ int main()
4343

4444

4545
// Check if libomp supports the callbacks for this test.
46+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
4647
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_cancel'
4748

4849
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/parallel/nested.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,10 @@ int main()
3838
// Check if libomp supports the callbacks for this test.
3939
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
4040
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
41-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
42-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
43-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
44-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
46-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
41+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
42+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
43+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
44+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
4745

4846

4947
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/parallel/nested_lwt.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,10 @@ int main()
3737
// Check if libomp supports the callbacks for this test.
3838
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
3939
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
40-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
41-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
42-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
43-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
44-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
40+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
41+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
42+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
43+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
4644

4745
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
4846
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=4, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]

runtime/test/ompt/parallel/nested_serialized.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@ int main()
2323
// Check if libomp supports the callbacks for this test.
2424
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
2525
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
26-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
27-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
28-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
29-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
30-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
31-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
26+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
27+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
28+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
29+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
3230

3331
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
3432
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=4, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]

runtime/test/ompt/parallel/no_thread_num_clause.c

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,10 @@ int main()
1717
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_thread_end'
1818
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
1919
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
20-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
21-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
22-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
23-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
24-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
25-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
20+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
21+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
22+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
23+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
2624

2725
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
2826
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=4, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]

runtime/test/ompt/parallel/normal.c

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ int main()
1616
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_thread_end'
1717
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
1818
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
19-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
20-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
21-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
22-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
23-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
24-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
19+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
20+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
21+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
22+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
23+
2524

2625
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
2726
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=4, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]

runtime/test/ompt/parallel/serialized.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ int main()
1313
// Check if libomp supports the callbacks for this test.
1414
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
1515
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
16-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
17-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
16+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
1817

1918
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
2019
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=1, parallel_function=0x{{[0-f]+}}, invoker=[[PARALLEL_INVOKER:[0-9]+]]

runtime/test/ompt/tasks/explicit_task.c

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,17 +33,14 @@ int main()
3333

3434

3535
// Check if libomp supports the callbacks for this test.
36-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
37-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
38-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
39-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
40-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
41-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
42-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
43-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
44-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_begin'
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_switch'
46-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_end'
36+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
37+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_schedule'
38+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
39+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
40+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
41+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
42+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
43+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
4744

4845

4946
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/tasks/serialized.c

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,14 @@ int main()
3232

3333

3434
// Check if libomp supports the callbacks for this test.
35-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
36-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
37-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
38-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
39-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
40-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
41-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
42-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
43-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_begin'
44-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_switch'
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_end'
35+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
36+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_schedule'
37+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
38+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
39+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
40+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
41+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
42+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
4643

4744

4845
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/tasks/task_in_joinbarrier.c

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,14 @@ int main()
3232

3333

3434
// Check if libomp supports the callbacks for this test.
35-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
36-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
37-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
38-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
39-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_begin'
40-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_barrier_end'
41-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_begin'
42-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_wait_barrier_end'
43-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_begin'
44-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_switch'
45-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_task_end'
35+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_create'
36+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_task_schedule'
37+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
38+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
39+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
40+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquire'
41+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_acquired'
42+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_mutex_released'
4643

4744

4845
// CHECK: {{^}}0: NULL_POINTER=[[NULL:.*$]]

runtime/test/ompt/worksharing/for/base.h

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,11 @@ int main()
1010
}
1111

1212
// Check if libomp supports the callbacks for this test.
13-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
14-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
15-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
16-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
17-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
18-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_end'
19-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_loop_begin'
20-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_loop_end'
13+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
14+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
15+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
16+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_work'
17+
2118

2219
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
2320
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id={{[0-9]+}}, parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=4, parallel_function=0x{{[0-f]+}}, invoker={{.*}}

runtime/test/ompt/worksharing/for/base_serialized.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ int main()
1010
}
1111

1212
// Check if libomp supports the callbacks for this test.
13-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_parallel_begin'
14-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_begin'
15-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_implicit_task_end'
16-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_loop_begin'
17-
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_event_loop_end'
13+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_begin'
14+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_parallel_end'
15+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_implicit_task'
16+
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_work'
17+
1818

1919
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
2020
// CHECK: {{^}}[[MASTER_ID:[0-9]+]]: ompt_event_parallel_begin: parent_task_id=[[PARENT_TASK_ID:[0-9]+]], parent_task_frame.exit=[[NULL]], parent_task_frame.reenter={{0x[0-f]+}}, parallel_id=[[PARALLEL_ID:[0-9]+]], requested_team_size=1, parallel_function=0x{{[0-f]+}}, invoker={{.+}}

runtime/test/ompt/worksharing/sections.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ int main()
2121
// CHECK-NOT: {{^}}0: Could not register callback 'ompt_callback_work'
2222

2323
// CHECK: 0: NULL_POINTER=[[NULL:.*$]]
24+
//TODO: add test (for now: cannot distinguish between static for and sections)
2425

2526
return 0;
2627
}

0 commit comments

Comments
 (0)