From b0fadcebd63a9cba498c0b3634b510c6e19ead0a Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Thu, 13 Oct 2022 15:31:57 +0400 Subject: [PATCH] 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 * Update src/frontends/ir/docs/tests.md Co-authored-by: Tatiana Savina * Update src/frontends/ir/docs/tests.md Co-authored-by: Tatiana Savina * Update src/frontends/ir/docs/tests.md Co-authored-by: Tatiana Savina * Update src/frontends/ir/docs/tests.md Co-authored-by: Tatiana Savina Co-authored-by: Tatiana Savina --- src/frontends/ir/README.md | 2 ++ src/frontends/ir/docs/tests.md | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 src/frontends/ir/docs/tests.md diff --git a/src/frontends/ir/README.md b/src/frontends/ir/README.md index 61c2c7ebff3..775d6a3ac96 100644 --- a/src/frontends/ir/README.md +++ b/src/frontends/ir/README.md @@ -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 diff --git a/src/frontends/ir/docs/tests.md b/src/frontends/ir/docs/tests.md new file mode 100644 index 00000000000..db95c755377 --- /dev/null +++ b/src/frontends/ir/docs/tests.md @@ -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)