Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanLiu2Intel committed Dec 2, 2024
1 parent a5a8382 commit 920aaf1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ TEST_P(CompileAndDriverCaching, CompilationCacheWithEmptyConfig) {
std::string driverLogInitContent = ::intel_npu::zeroUtils::getLatestBuildError(graph_ddi_table_ext);
std::printf("==[1.1][EmptyConfig] driver log content : #%s#\n", driverLogInitContent.c_str());
//ZE DynamicCaching cache_status_t or empty
if (driverLogInitContent.empty() || containsCacheStatus(driverLogInitContent, "ZE DynamicCaching cache_status_t")) {
if (!driverLogInitContent.empty() && !containsCacheStatus(driverLogInitContent, "ZE DynamicCaching cache_status_t")) {
GTEST_SKIP() << "Due TO NOW UMD CACHE LOG ";
}

Expand Down

0 comments on commit 920aaf1

Please sign in to comment.