-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Disable sporadic GPU smoke_outputTensorShapesForDynamicInput on Windows #33442
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
base: master
Are you sure you want to change the base?
Conversation
|
Looks like the test isn't skipped anyway. @p-durandin, could you take a look - what am I doing wrong? The goal is to skip it on Windows only |
| } | ||
|
|
||
| TEST(TensorTest, smoke_outputTensorShapesForDynamicInput) { | ||
| 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.
You can try to use such a condition here, as far as I know the chosen skip approach does not work for this type of tests
#if defined(_WIN32)
GTEST_SKIP();
#endif
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.
Hmm, still see it as executed in the latest CI results on Windows ("ov_gpu_func_tests-TensorTest_smoke_canSetTensorForDynamicInputsjmrgulg-1.log" file among the "passed" in logs.zip)
Tickets: