Skip to content

Commit

Permalink
[SYCL] Update clang verification checks to use fully qualified class …
Browse files Browse the repository at this point in the history
…name
  • Loading branch information
calebwat committed Jul 2, 2024
1 parent 2b950a0 commit 73b3c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sycl/test/extensions/properties/properties_ctor_negative.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

int main() {
// expected-error-re@sycl/ext/oneapi/properties/property_utils.hpp:* {{static assertion failed due to requirement {{.+}}: Unrecognized property in property list.}}
// expected-error@+1 {{no viable constructor or deduction guide for deduction of template arguments of 'properties'}}
// expected-error@+1 {{no viable constructor or deduction guide for deduction of template arguments of 'sycl::ext::oneapi::experimental::properties'}}
auto InvalidPropertyList1 = sycl::ext::oneapi::experimental::properties(1);
// expected-error-re@sycl/ext/oneapi/properties/property_utils.hpp:* {{static assertion failed due to requirement {{.+}}: Unrecognized property in property list.}}
// expected-error@+1 {{no viable constructor or deduction guide for deduction of template arguments of 'properties'}}
// expected-error@+1 {{no viable constructor or deduction guide for deduction of template arguments of 'sycl::ext::oneapi::experimental::properties'}}
auto InvalidPropertyList2 = sycl::ext::oneapi::experimental::properties(
sycl::ext::oneapi::experimental::foo{1}, true);
// expected-error-re@sycl/ext/oneapi/properties/properties.hpp:* {{static assertion failed due to requirement {{.+}}: Duplicate properties in property list.}}
Expand Down

0 comments on commit 73b3c3f

Please sign in to comment.