-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable add_output_performance test #24376
Disable add_output_performance test #24376
Conversation
src/core/tests/model.cpp
Outdated
@@ -1147,6 +1147,8 @@ TEST(model, add_output_port_to_result) { | |||
} | |||
|
|||
TEST(model, add_output_performance) { | |||
// skip this test due to CVS-140440 | |||
GTEST_SKIP(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GTEST_SKIP(); | |
SKIP_IF_CURRENT_TEST_IS_DISABLED(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
SKIP_IF_CURRENT_TEST_IS_DISABLED is declared and defined in func test utils.
I don't want to add dependency to func test utils to unit test target.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GTEST_SKIP(); | |
GTEST_SKIP() << "CVS-140440"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add test to skipped test list
src/core/tests/model.cpp
Outdated
@@ -1147,6 +1147,8 @@ TEST(model, add_output_port_to_result) { | |||
} | |||
|
|||
TEST(model, add_output_performance) { | |||
// skip this test due to CVS-140440 | |||
GTEST_SKIP(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GTEST_SKIP(); | |
GTEST_SKIP() << "CVS-140440"; |
4947369
Details:
Tickets: