@@ -17,6 +17,11 @@ using namespace ov::intel_npu;
1717using namespace ov ::test::utils;
1818
1919class OfflineCompilationUnitTests : public ::testing::TestWithParam<std::string_view> {
20+ public:
21+ static std::string getTestCaseName (const testing::TestParamInfo<ParamType>& info) {
22+ return std::string (info.param );
23+ }
24+
2025protected:
2126 void SetUp () override {
2227 std::vector<std::string> availableDevices = core.get_available_devices ();
@@ -31,6 +36,7 @@ TEST_P(OfflineCompilationUnitTests, CompileWithCiPWhenDriverNotInstalledSetPrope
3136 const auto platform = GetParam ();
3237
3338 ov::AnyMap config;
39+ config[ov::intel_npu::compiler_type.name ()] = ov::intel_npu::CompilerType::PLUGIN;
3440 config[ov::intel_npu::platform.name ()] = platform;
3541 core.set_property (DEVICE_NPU, config);
3642
@@ -42,6 +48,7 @@ TEST_P(OfflineCompilationUnitTests, CompileWithCiPWhenDriverNotInstalled) {
4248 const auto platform = GetParam ();
4349
4450 ov::AnyMap config;
51+ config[ov::intel_npu::compiler_type.name ()] = ov::intel_npu::CompilerType::PLUGIN;
4552 config[ov::intel_npu::platform.name ()] = platform;
4653
4754 std::shared_ptr<ov::Model> model = ov::test::utils::make_multi_single_conv ();
@@ -50,7 +57,9 @@ TEST_P(OfflineCompilationUnitTests, CompileWithCiPWhenDriverNotInstalled) {
5057
5158INSTANTIATE_TEST_SUITE_P (OfflineCompilationPlatforms,
5259 OfflineCompilationUnitTests,
53- ::testing::Values (ov::intel_npu::Platform::NPU5010, ov::intel_npu::Platform::NPU5020));
60+ ::testing::Values (ov::intel_npu::Platform::NPU5010,
61+ ov::intel_npu::Platform::NPU5020),
62+ OfflineCompilationUnitTests::getTestCaseName);
5463
5564using UnavailableDeviceTests = ::testing::Test;
5665
0 commit comments