From 8e99540298eba47ab02b69a3d99f0452c9572d5d Mon Sep 17 00:00:00 2001 From: Ewan Crawford Date: Fri, 22 Nov 2024 11:20:34 +0000 Subject: [PATCH] [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 --- sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp b/sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp index 795dc074d882e..85e16f123a99b 100644 --- a/sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp +++ b/sycl/test-e2e/Graph/Update/dyn_cgf_different_arg_nums.cpp @@ -69,7 +69,7 @@ int main() { // CHECK: <--- urCommandBufferAppendKernelLaunchExp // CHECK-SAME: .hKernel = [[KERNEL_HANDLE1]] // CHECK-SAME: .numKernelAlternatives = 3 - // CHECK-SAME: .phKernelAlternatives = {[[KERNEL_HANDLE2:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE3:[0-9a-fA-Fx]+]], [[KERNEL_HANDLE4:[0-9a-fA-Fx]+]]} + // 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]+]]} auto DynamicCG = exp_ext::dynamic_command_group(Graph, {CGFA, CGFB, CGFC, CGFD}); auto DynamicCGNode = Graph.add(DynamicCG);