Skip to content

Commit

Permalink
skipped all ModelUtilsTest tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mryzhov committed Oct 18, 2024
1 parent e4f746e commit 22b0c3b
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ TEST_F(ModelUtilsTest, generate_0) {
}

TEST_F(ModelUtilsTest, generate_1) {
#if defined(WIN32) && !defined(NDEBUG)
GTEST_SKIP() << "Skipping on Windows in Debug mode due to Issue 155346.";
#endif
Model_1 test;
std::shared_ptr<ov::Model> test_model = test.get(), recovered_model;
{
Expand All @@ -56,6 +59,9 @@ TEST_F(ModelUtilsTest, generate_1) {
}

TEST_F(ModelUtilsTest, generate_2) {
#if defined(WIN32) && !defined(NDEBUG)
GTEST_SKIP() << "Skipping on Windows in Debug mode due to Issue 155346.";
#endif
Model_2 test;
std::shared_ptr<ov::Model> test_model = test.get(), recovered_model;
{
Expand Down

0 comments on commit 22b0c3b

Please sign in to comment.