summaryrefslogtreecommitdiffstats
path: root/fuzz
diff options
context:
space:
mode:
authorNicola Tuveri <nic.tuv@gmail.com>2020-11-04 15:39:42 +0200
committerNicola Tuveri <nic.tuv@gmail.com>2020-11-12 16:27:17 +0200
commita7da4d488d55f68de50a96bd3027cd9fc650d444 (patch)
tree768ce6142b67e0b34503697dd8bd23cc4f564195 /fuzz
parent9ce8e0d17e608de4f85f7543c52b146e3c6a2291 (diff)
[test/recipes] Split test_fuzz into separate recipes
When using `HARNESS_JOBS` to run the tests in parallel, no matter the level of parallelism that can be used, the monolithic `test_fuzz` takes a long time to run, conditioning the duration of the whole build. This commit splits the single `test_fuzz` recipe into separate recipes for each fuzzer. The previous mechanism to select individual fuzz tests using the `FUZZ_TESTS` environment variable is also dropped (and documentation updated). Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13307)
Diffstat (limited to 'fuzz')
-rw-r--r--fuzz/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/fuzz/README.md b/fuzz/README.md
index deb7a43168..6cc7811ad0 100644
--- a/fuzz/README.md
+++ b/fuzz/README.md
@@ -114,15 +114,15 @@ To do all the tests of a specific fuzzer such as asn1 you can run
fuzz/asn1-test fuzz/corpora/asn1
or
- make test TESTS=fuzz_test FUZZ_TESTS=asn1
+ make test TESTS=fuzz_test_asn1
To run several fuzz tests you can use for instance:
- make test TESTS=test_fuzz FUZZ_TESTS="cmp cms"
+ make test TESTS='test_fuzz_cmp test_fuzz_cms'
To run all fuzz tests you can use:
- make test TESTS=test_fuzz
+ make test TESTS='test_fuzz_*'
Random numbers
--------------