Update information about tests for IR frontend (#13465)

* Update information about tests for IR frontend

* Fixed typos

* Update src/frontends/ir/README.md

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>

* Update src/frontends/ir/docs/tests.md

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>

* Update src/frontends/ir/docs/tests.md

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>

* Update src/frontends/ir/docs/tests.md

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>

* Update src/frontends/ir/docs/tests.md

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>

Co-authored-by: Tatiana Savina <tatiana.savina@intel.com>
This commit is contained in:
Ilya Churaev 2022-10-13 15:31:57 +04:00 committed by GitHub
parent 18348b1081
commit b0fadcebd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View File

@ -28,6 +28,7 @@ OpenVINO IR Frontend contains the next components:
* [include](./include) is a public frontend API.
* [src](./src/) folder contains the sources of the component.
* [tests](./tests/) folder contains tests for the component. To get more information, read [How to run tests](./docs/tests.md).
## Architecture
@ -37,6 +38,7 @@ For detailed information about OpenVINO IR Frontend architecture, read the [arch
## Tutorials
* [How to support a new opset](./docs/support_new_opset.md)
* [How to run tests](./docs/tests.md)
## See also

View File

@ -0,0 +1,17 @@
# OpenVINO IR Frontend tests
OpenVINO IR tests cover the next frontend functionality: parser IRs, read model from the memory, and extensions support.
## How to build and run tests
CMake target `ov_ir_frontend_tests` is responsible for building IR tests. IR Frontend tests use the `gtest` framework for tests execution.
After the build, `ov_ir_frontend_tests` (`ov_ir_frontend_tests.exe` for Windows) binary files can be used to run all tests for the IR frontend.
To get a tests coverage report for the IR frontend, read the page on [measuring coverage](../../../../docs/dev/test_coverage.md).
## See also
* [OpenVINO IR Frontend README](../README.md)
* [OpenVINO™ README](../../../../README.md)
* [Developer documentation](../../../../docs/dev/index.md)