Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include "common_test_utils/test_common.hpp"
#include "common_test_utils/common_utils.hpp"
#include "common_test_utils/node_builders/activation.hpp"
#include "functional_test_utils/skip_tests_config.hpp"
#include "openvino/core/partial_shape.hpp"
#include "openvino/core/preprocess/pre_post_process.hpp"
#include "openvino/op/parameter.hpp"
Expand Down Expand Up @@ -339,6 +340,7 @@ TEST(VariablesTest, smoke_padded_tensor_set_get_state_with_convert) {
}

TEST(TensorTest, smoke_outputTensorShapesForDynamicInput) {
SKIP_IF_CURRENT_TEST_IS_DISABLED();
Copy link
Contributor

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

Copy link
Collaborator Author

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)

auto core = ov::Core();
using namespace ov::preprocess;
auto p = PrePostProcessor(ov::test::utils::make_split_multi_conv_concat());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,6 +193,8 @@ std::vector<std::string> disabledTestPatterns() {
// by calc abs_threshold with expected value
R"(.*smoke_RemoteTensor/OVRemoteTensorBatched_Test.NV12toBGR_buffer/(num_batch_4|num_batch_2).*)",
R"(.*smoke_Check/ConstantResultSubgraphTest.Inference/SubgraphType=SINGLE_COMPONENT_IS=\[1,3,10,10\]_IT=i16_Device=GPU.*)",
// Issue: 126388
R"(.*smoke_outputTensorShapesForDynamicInput.*)",
#endif
};
if (!isGPU1Present()) {
Expand Down
Loading