Skip to content

Commit 5026eef

Browse files
committed
[SYCL][Graph] Fix E2E Filecheck regex
CI is showing fails like https://github.com/intel/llvm/actions/runs/11969728548/job/33373742453?pr=15843 where the test is expecting output like: ``` .phKernelAlternatives = {0x12ed110, 0x1501ac0, 0x1502b60} ``` but the `SYCL_UR_TRACE` output is formed like: ``` .phKernelAlternatives = 0x23b4070 {0x25529d0, 0x2555000, 0x25560a0} ``` Update the Filecheck regex
1 parent db59b4f commit 5026eef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ int main() {
6969
// CHECK: <--- urCommandBufferAppendKernelLaunchExp
7070
// CHECK-SAME: .hKernel = [[KERNEL_HANDLE1]]
7171
// CHECK-SAME: .numKernelAlternatives = 3
72-
// CHECK-SAME: .phKernelAlternatives = {[[KERNEL_HANDLE2:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE3:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE4:[0-9a-fA-Fx]+]]}
72+
// CHECK-SAME: .phKernelAlternatives = {{[0-9a-fA-Fx]* ?}}{[[KERNEL_HANDLE2:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE3:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE4:[0-9a-fA-Fx]+]]}
7373
auto DynamicCG =
7474
exp_ext::dynamic_command_group(Graph, {CGFA, CGFB, CGFC, CGFD});
7575
auto DynamicCGNode = Graph.add(DynamicCG);

0 commit comments

Comments
 (0)