From f48bae25ce1972790e2781d764a24d826db9cc46 Mon Sep 17 00:00:00 2001 From: "Watts, Caleb" Date: Mon, 1 Jul 2024 18:44:32 -0700 Subject: [PATCH] [SYCL] Adjust additional test for clang verification The names of classes is now emitted fully qualified, so test expected errors needed to adjust --- sycl/test/basic_tests/vectors/ctad_fail.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sycl/test/basic_tests/vectors/ctad_fail.cpp b/sycl/test/basic_tests/vectors/ctad_fail.cpp index 6046d08e58698..04fec258b1a56 100644 --- a/sycl/test/basic_tests/vectors/ctad_fail.cpp +++ b/sycl/test/basic_tests/vectors/ctad_fail.cpp @@ -2,5 +2,5 @@ #include int main() { - sycl::vec v(1, .1); // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'vec'}} + sycl::vec v(1, .1); // expected-error {{no viable constructor or deduction guide for deduction of template arguments of 'sycl::vec'}} }