summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-01-19 17:54:30 +1100
committerSven Eden <yamakuzure@gmx.net>2018-05-30 07:50:20 +0200
commit982bf4f3897a1ff9253cac7bc2f90a7984207f37 (patch)
tree7637ebef3ba36ff438eb0054b15b0f2c38a4dd08 /tools
parentb378688cfed10574fc103527aaa230f0cb4c498d (diff)
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')
-rw-r--r--tools/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 100644
index 000000000..302749d8e
--- /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"