aboutsummaryrefslogtreecommitdiffstats
path: root/manuals
diff options
context:
space:
mode:
authorGavin Howard <gavin@yzena.com>2021-07-08 20:20:48 -0600
committerGavin Howard <gavin@yzena.com>2021-07-08 20:20:48 -0600
commit62b6f94ae7a2c7e5059110ba93dad025404d5b23 (patch)
tree51fcf9534f468d04a195d770d693bb0a2485ef47 /manuals
parentb467602c68f900d1047e1a216133294246e46a19 (diff)
downloadplatform_external_bc-62b6f94ae7a2c7e5059110ba93dad025404d5b23.tar.gz
platform_external_bc-62b6f94ae7a2c7e5059110ba93dad025404d5b23.tar.bz2
platform_external_bc-62b6f94ae7a2c7e5059110ba93dad025404d5b23.zip
Improve history tests again
This is as far as I will go right now. History is not really affecting the coverage anymore. Signed-off-by: Gavin Howard <gavin@yzena.com>
Diffstat (limited to 'manuals')
-rw-r--r--manuals/development.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/manuals/development.md b/manuals/development.md
index 695ec0d0..e034341c 100644
--- a/manuals/development.md
+++ b/manuals/development.md
@@ -1357,11 +1357,13 @@ make coverage
Otherwise, you will get errors.
-Note that history does, by default, show no coverage at all. This is because, as
-mentioned above, testing history with the test suite is not really possible.
+If you want to run tests in parallel, you can do this:
-However, it can be tested manually before running `make coverage_output`. Then
-it should start showing coverage.
+```
+make -j<cores>
+make -j<cores> test
+make coverage_output
+```
### [AddressSanitizer][21] and Friends