Revert "fix: Update CL_DEVICE_LATEST_CONFORMANCE_VERSION_PASSED value"

This reverts commit 49270801d4.

Signed-off-by: Compute-Runtime-Validation <compute-runtime-validation@intel.com>
This commit is contained in:
Compute-Runtime-Validation 2023-05-30 12:18:57 +02:00 committed by Compute-Runtime-Automation
parent 5aeffbf673
commit d247fb5aa1
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ static std::string vendor = "Intel(R) Corporation";
static std::string profile = "FULL_PROFILE";
static std::string spirVersions = "1.2 ";
static std::string spirvName = "SPIR-V";
const char *latestConformanceVersionPassed = "v2023-05-16-00";
const char *latestConformanceVersionPassed = "v2022-04-22-00";
#define QTR(a) #a
#define TOSTR(b) QTR(b)
static std::string driverVersion = TOSTR(NEO_OCL_DRIVER_VERSION);

View File

@ -155,7 +155,7 @@ TEST_F(DeviceGetCapsTest, WhenCreatingDeviceThenCapsArePopulatedCorrectly) {
EXPECT_GT(caps.openclCAllVersions.size(), 0u);
EXPECT_GT(caps.openclCFeatures.size(), 0u);
EXPECT_EQ(caps.extensionsWithVersion.size(), 0u);
EXPECT_STREQ("v2023-05-16-00", caps.latestConformanceVersionPassed);
EXPECT_STREQ("v2022-04-22-00", caps.latestConformanceVersionPassed);
EXPECT_NE(nullptr, caps.spirVersions);
EXPECT_NE(nullptr, caps.deviceExtensions);