From 2d2a27dec78c89f38d1d9265a536ada579a32866 Mon Sep 17 00:00:00 2001 From: Harry Bond Date: Wed, 5 Feb 2025 17:35:05 +0000 Subject: [PATCH] [docs] install.md: omim_test to omim-test omim_test is wrong, it's omim-test Signed-off-by: Harry Bond --- docs/INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index e4095ce611..dc9375be16 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -272,7 +272,7 @@ Run all unit tests: ```bash cd build -ctest -L "omim_test" --output-on-failure +ctest -L "omim-test" --output-on-failure ``` To run a limited set of tests, use `-R ` flag. To exclude some tests, use `-E ` flag: @@ -280,7 +280,7 @@ To run a limited set of tests, use `-R ` flag. To exclude some tests, use ```bash cd build ctest -R "base_tests|coding_tests" --output-on-failure -ctest -L "omim_test" -E "base_tests|coding_tests" --output-on-failure +ctest -L "omim-test" -E "base_tests|coding_tests" --output-on-failure ``` Some tests [are known to be broken](https://github.com/organicmaps/organicmaps/issues?q=is%3Aissue+is%3Aopen+label%3ATests) and disabled on CI.