summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-01-19 17:54:30 +1100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-01-27 09:03:46 +0100
commitb68dfb9e83dc2d12cf9d8ae5ef3ddaca537a8519 (patch)
tree85cb8927ca64fa6f09b87cf22e294a9fd9218111 /tools
parentfuzz: add a note on reporting security bugs to HACKING (diff)
downloadsystemd-b68dfb9e83dc2d12cf9d8ae5ef3ddaca537a8519.tar.xz
systemd-b68dfb9e83dc2d12cf9d8ae5ef3ddaca537a8519.zip
Hook up oss-fuzz test cases as tests
This is a bit painful because a separate build of systemd is necessary. The tests are guarded by tests!=false and slow-tests==true. Running them is not slow, but compilation certainly is. If this proves unwieldy, we can add a separate option controlling those builds later. The build for each sanitizer has its own directory, and we build all fuzzer tests there, and then pull them out one-by-one by linking into the target position as necessary. It would be nicer to just build the desired fuzzer, but we need to build the whole nested build as one unit. [I also tried making systemd and nested meson subproject. This would work nicely, but meson does not allow that because the nested target names are the same as the outer project names. If that is ever fixed, that would be the way to go.] v2: - make sure things still work if memory sanitizer is not available v3: - switch to syntax which works with meson 0.42.1 found in Ubuntu
Diffstat (limited to 'tools')
-rwxr-xr-xtools/meson-build.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/meson-build.sh b/tools/meson-build.sh
new file mode 100755
index 00000000000..302749d8ed7
--- /dev/null
+++ b/tools/meson-build.sh
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -eux
+
+src="$1"
+dst="$2"
+target="$3"
+options="$4"
+
+[ -d "$dst" ] || meson "$src" "$dst" $options
+ninja -C "$dst" "$target"