From a7da4d488d55f68de50a96bd3027cd9fc650d444 Mon Sep 17 00:00:00 2001 From: Nicola Tuveri Date: Wed, 4 Nov 2020 15:39:42 +0200 Subject: [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 (Merged from https://github.com/openssl/openssl/pull/13307) --- fuzz/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'fuzz') 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 -------------- -- cgit v1.2.3