Skip to content

Commit 0a917a9

Browse files
authored
[paddle FE] Align paddle tests name to others OV tests (#34513)
### Details: - Add prefix `ov_` to `paddle_tests` gtest application name to be aligned with others tests ### Tickets: - N/A Signed-off-by: Raasz, Pawel <pawel.raasz@intel.com>
1 parent b83813e commit 0a917a9

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
continue-on-error: true
105105

106106
# - name: Run Paddle frontend unit tests
107-
# run: ${{ github.workspace }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/paddle_tests --gtest_filter=-*IE_GPU*
107+
# run: ${{ github.workspace }}/bin/intel64/${{ env.CMAKE_BUILD_TYPE }}/ov_paddle_tests --gtest_filter=-*IE_GPU*
108108
# continue-on-error: true
109109

110110
- name: Run TensorFlow frontend unit tests

.github/workflows/job_cxx_unit_tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
with:
6363
name: openvino_package
6464
path: ${{ env.INSTALL_DIR }}
65-
65+
6666
- name: Download OpenVINO artifacts (tests)
6767
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
6868
with:
@@ -132,13 +132,13 @@ jobs:
132132
if: ${{ fromJSON(inputs.affected-components).PDPD_FE.test && runner.os != 'Windows' }} # Ticket: 149651
133133
run: |
134134
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
135-
${{ env.INSTALL_TEST_DIR }}/paddle_tests --gtest_filter="-PaddleFuzzyOpTest*" --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-PaddleTests.xml
135+
${{ env.INSTALL_TEST_DIR }}/ov_paddle_tests --gtest_filter="-PaddleFuzzyOpTest*" --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-PaddleTests.xml
136136
137137
- name: PaddlePaddle frontend Fuzzy Op tests
138138
if: ${{ inputs.event_name == 'schedule' && runner.os != 'Windows' }} # Ticket: 149651
139139
run: |
140140
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
141-
${{ env.INSTALL_TEST_DIR }}/paddle_tests --gtest_filter="PaddleFuzzyOpTest*" --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-PaddleFuzzyOpTests.xml
141+
${{ env.INSTALL_TEST_DIR }}/ov_paddle_tests --gtest_filter="PaddleFuzzyOpTest*" --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-PaddleFuzzyOpTests.xml
142142
143143
- name: ONNX frontend tests (GraphIterator default)
144144
if: ${{ fromJSON(inputs.affected-components).ONNX_FE.test && runner.arch != 'ARM64' }} # Ticket for macOS ARM64: 122663, for Linux ARM64: 126280, 153161
@@ -204,12 +204,12 @@ jobs:
204204
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
205205
${{ env.INSTALL_TEST_DIR }}/ov_cpu_unit_tests_vectorized --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-CPUUnitTestsVectorized.xml
206206
207-
- name: NPU plugin unit tests
207+
- name: NPU plugin unit tests
208208
if: ${{fromJSON(inputs.affected-components).NPU.test && runner.os == 'Windows'}}
209209
run: |
210210
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
211211
${{ env.INSTALL_TEST_DIR }}/ov_npu_unit_tests --gtest_print_time=1 --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-NPUUnitTests.xml
212-
212+
213213
- name: ov_subgraphs_dumper_tests tests
214214
run: |
215215
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
@@ -256,7 +256,7 @@ jobs:
256256
run: |
257257
${{ env.SOURCE_COMMAND }} ${{ env.SETUPVARS }}
258258
${{ env.INSTALL_TEST_DIR }}/ov_auto_batch_unit_tests --gtest_output=xml:${{ env.INSTALL_TEST_DIR }}/TEST-ov_auto_batch_unit_tests.xml
259-
259+
260260
# Disabled for debug build due to long execution time
261261
- name: AutoBatch func tests
262262
if: ${{ fromJSON(inputs.affected-components).AUTO_BATCH.test && inputs.build-type != 'debug' }}

.github/workflows/linux_sanitizers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ jobs:
351351
if: ${{ !cancelled() }}
352352
run: |
353353
source ${INSTALL_DIR}/setupvars.sh
354-
${INSTALL_TEST_DIR}/paddle_tests --gtest_print_time=1 \
354+
${INSTALL_TEST_DIR}/ov_paddle_tests --gtest_print_time=1 \
355355
${{ matrix.SANITIZER != '' && '--gtest_filter=-PaddleFuzzyOpTest/FrontEndFuzzyOpTest.testOpFuzzy/paddle_greater_equal_big_int64_greater_equal_big_int64_pdmodel' || '' }} \
356356
--gtest_output=xml:${INSTALL_TEST_DIR}/TEST-PaddleTests.xml
357357

src/frontends/paddle/docs/tests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OpenVINO Paddle Frontend [tests](../tests) have the following structure:
77

88
## How to build and run tests
99

10-
OpenVINO Paddle Frontend is covered by tests from the binary `paddle_tests`. This binary can be built by the target with the same name.
10+
OpenVINO Paddle Frontend is covered by tests from the binary `ov_paddle_tests`. This binary can be built by the target with the same name.
1111

1212
## How to add a unit-test
1313
1. Implement python script in `test_models/gen_scripts/` to get the PaddlePaddle test model and the reference inputs and outputs from PaddlePaddle.

src/frontends/paddle/tests/pdmodel_test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (C) 2018-2026 Intel Corporation
22
# SPDX-License-Identifier: Apache-2.0
33
#
4-
set(TARGET_NAME "paddle_tests")
4+
set(TARGET_NAME "ov_paddle_tests")
55
set(PD_MODEL_TAG "pdmodel")
66
set(TEST_PADDLE_MODEL_EXT ".pdmodel")
77
set(ENABLE_PIR "0")

0 commit comments

Comments
 (0)