Skip to content

Commit

Permalink
Port and clean behavior/ shared tests #1 (openvinotoolkit#21860)
Browse files Browse the repository at this point in the history
* Remove `set_preprocess.cpp`

* Remove `preprocessing.hpp`

* Remove `locale.hpp` - ported to `CanCompileModelWithCustomLocale`

* Port `version.cpp` and remove legacy

* Revert shared `version.hpp`
  • Loading branch information
vurusovs authored Jan 4, 2024
1 parent 72e774f commit 05f65ad
Show file tree
Hide file tree
Showing 12 changed files with 64 additions and 1,341 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.

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.

This file was deleted.

Loading

0 comments on commit 05f65ad

Please sign in to comment.