diff --git a/tests/extension/oneapi_properties/properties_is_property_check.cpp b/tests/extension/oneapi_properties/properties_is_property_check.cpp deleted file mode 100644 index 97b9605e3..000000000 --- a/tests/extension/oneapi_properties/properties_is_property_check.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/******************************************************************************* -// -// SYCL 2020 Extension Conformance Test -// -// Provides test for sycl::is_property for compile-time properties -// -*******************************************************************************/ - -#include "../../common/common.h" - -#define TEST_NAME properties_is_property_check - -namespace TEST_NAMESPACE { - -using namespace sycl_cts; - -/** test sycl::is_property for compile-time properties - */ -class TEST_NAME : public util::test_base { - public: - /** return information about this test - */ - void get_info(test_base::info &out) const override { - set_test_info(out, TOSTRING(TEST_NAME), TEST_FILE); - } - - /** execute the test - */ - void run(util::logger &log) override { -#if !defined(SYCL_EXT_ONEAPI_PROPERTIES) - SKIP("SYCL_EXT_ONEAPI_PROPERTIES is not defined"); -#elif !defined(SYCL_EXT_ONEAPI_DEVICE_GLOBAL) - SKIP("SYCL_EXT_ONEAPI_DEVICE_GLOBAL is not defined"); -#else - { - using namespace sycl::ext::oneapi::experimental; - - // is_property_key for compile-time-constant properties - if (!is_property_key::value) - FAIL(log, - "is_property_key for device_image_scope_key is not true_type"); - if (!is_property_key::value) - FAIL(log, "is_property_key for host_access_key is not true_type"); - if (!is_property_key::value) - FAIL(log, "is_property_key for init_mode_key is not true_type"); - if (!is_property_key::value) - FAIL(log, "is_property_key for implement_in_csr_key is not true_type"); - } -#endif - } -}; - -// register this test with the test_collection. -util::test_proxy proxy; - -} /* namespace TEST_NAMESPACE */