summaryrefslogtreecommitdiff
path: root/docs/HACKING.md
diff options
context:
space:
mode:
authorEvgeny Vereshchagin <evvers@ya.ru>2020-06-11 18:34:42 +0200
committerFrantisek Sumsal <frantisek@sumsal.cz>2020-06-11 18:59:44 +0200
commit135a1add7b71b1527ec3dad4f0846e0f8884e2f5 (patch)
tree26bd0e32811e471afd8f7b5b0a736bb73c800a22 /docs/HACKING.md
parent60950f3c252ee4dc39ac60b3c59e0cfdd8e95920 (diff)
downloadsystemd-135a1add7b71b1527ec3dad4f0846e0f8884e2f5.tar.gz
turn off fuzzit part 2
it's just a follow-up to https://github.com/systemd/systemd/pull/16064
Diffstat (limited to 'docs/HACKING.md')
-rw-r--r--docs/HACKING.md6
1 files changed, 1 insertions, 5 deletions
diff --git a/docs/HACKING.md b/docs/HACKING.md
index c0516b5c62..a86a6f2172 100644
--- a/docs/HACKING.md
+++ b/docs/HACKING.md
@@ -98,7 +98,7 @@ Happy hacking!
## Fuzzers
systemd includes fuzzers in `src/fuzz/` that use libFuzzer and are automatically
-run by [OSS-Fuzz](https://github.com/google/oss-fuzz) and [Fuzzit](https://fuzzit.dev) with sanitizers.
+run by [OSS-Fuzz](https://github.com/google/oss-fuzz) with sanitizers.
To add a fuzz target, create a new `src/fuzz/fuzz-foo.c` file with a `LLVMFuzzerTestOneInput`
function and add it to the list in `src/fuzz/meson.build`.
@@ -118,10 +118,6 @@ python infra/helper.py build_fuzzers --sanitizer memory systemd ../systemd
python infra/helper.py run_fuzzer systemd fuzz-foo
```
-When you add a new target you should also add the target on [Fuzzit](https://app.fuzzit.dev/admin/RxqRpGNXquIvqrmp4iJS/dashboard)
- (Please ask someone with permissions). One the target is configured on Fuzzit you need to add it to
- `travis-ci/managers/fuzzit.sh` so the new target will run sanity tests on every pull-request and periodic fuzzing jobs.
-
If you find a bug that impacts the security of systemd, please follow the
guidance in [CONTRIBUTING.md](CONTRIBUTING.md) on how to report a security vulnerability.