Skip to content

Commit

Permalink
Port version.cpp and remove legacy
Browse files Browse the repository at this point in the history
  • Loading branch information
vurusovs committed Dec 25, 2023
1 parent cacff7e commit 95e6f90
Show file tree
Hide file tree
Showing 8 changed files with 64 additions and 124 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#include "behavior/ov_plugin/version.hpp"

namespace ov {
namespace test {
namespace behavior {

INSTANTIATE_TEST_SUITE_P(smoke_Multi_BehaviorTests,
VersionTests,
::testing::Values(ov::test::utils::DEVICE_MULTI),
VersionTests::getTestCaseName);

INSTANTIATE_TEST_SUITE_P(smoke_Auto_BehaviorTests,
VersionTests,
::testing::Values(ov::test::utils::DEVICE_AUTO),
VersionTests::getTestCaseName);

} // namespace behavior
} // namespace test
} // namespace ov

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#include "behavior/ov_plugin/version.hpp"

namespace ov {
namespace test {
namespace behavior {

INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests,
VersionTests,
::testing::Values(ov::test::utils::DEVICE_GPU),
VersionTests::getTestCaseName);

INSTANTIATE_TEST_SUITE_P(smoke_Hetero_BehaviorTests,
VersionTests,
::testing::Values(ov::test::utils::DEVICE_HETERO),
VersionTests::getTestCaseName);

} // namespace behavior
} // namespace test
} // namespace ov

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
// Copyright (C) 2018-2023 Intel Corporation
// SPDX-License-Identifier: Apache-2.0
//

#include "behavior/ov_plugin/version.hpp"

namespace ov {
namespace test {
namespace behavior {

INSTANTIATE_TEST_SUITE_P(smoke_BehaviorTests,
VersionTests,
::testing::Values(ov::test::utils::DEVICE_TEMPLATE),
VersionTests::getTestCaseName);

} // namespace behavior
} // namespace test
} // namespace ov

This file was deleted.

This file was deleted.

0 comments on commit 95e6f90

Please sign in to comment.