Skip to content

Commit

Permalink
[ONNX] Disabled nonmaxsuppression test for Template plugin due to r2r…
Browse files Browse the repository at this point in the history
… issues (openvinotoolkit#26386)

### Details:
 - Disabled test for Template plugin which fails due to r2r issues

### Tickets:
 - 122120
  • Loading branch information
gkrivor authored Sep 5, 2024
1 parent 7cc357c commit 4127181
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/frontends/onnx/tests/onnx_import.in.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -950,12 +950,12 @@ OPENVINO_TEST(${BACKEND_NAME}, onnx_model_nonmaxsuppression_v9_single_box) {
test_case.run();
}

#if (defined _WIN32 || defined _WIN64)
// Ticket: 127743
OPENVINO_TEST(${BACKEND_NAME}, DISABLED_onnx_model_nonmaxsuppression_default_score_threshold) {
#else
OPENVINO_TEST(${BACKEND_NAME}, onnx_model_nonmaxsuppression_default_score_threshold) {
#endif
// TEMPLATE plugin has a run-to-run issue with this test, CVS-127743, CVS-122120
if (std::string("${BACKEND_NAME}") == std::string("INTERPRETER")) {
GTEST_SKIP();
}

auto model = convert_model("nms_default_score_threshold.onnx");
auto test_case = ov::test::TestCase(model, s_device);

Expand Down

0 comments on commit 4127181

Please sign in to comment.