summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJosh Lehan <krellan@google.com>2022-03-17 02:01:08 +0300
committerEd Tanous <ed@tanous.net>2022-03-17 19:20:23 +0300
commit0f503a9147aa5c58d42168dc2b4e8b520971e438 (patch)
tree7be4217eb634d5b718d4b97cc9c4a2dab39af483 /README.md
parent313a3c286ab95f7117b4b054b20ef79eb12b9d64 (diff)
downloadbmcweb-0f503a9147aa5c58d42168dc2b4e8b520971e438.tar.xz
README: Fix coverage instructions
They must run as two separate steps, otherwise the coverage process will run before the test process completes, resulting in corrupted output. Tested: Now it works for me. Signed-off-by: Josh Lehan <krellan@google.com> Change-Id: I164f0d67f0f350b9007db782ce33a17170ccd418
Diffstat (limited to 'README.md')
-rw-r--r--README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index 715edc39a2..8e6a39be96 100644
--- a/README.md
+++ b/README.md
@@ -48,7 +48,8 @@ ninja -C builddir
### Generate test coverage report:
```ascii
meson builddir -Db_coverage=true -Dtests=enabled
-ninja coverage -C builddir test
+ninja -C builddir test
+ninja -C builddir coverage
```
When BMCWeb starts running, it reads persistent configuration data
(such as UUID and session data) from a local file. If this is not