]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/fuzz-regressions/meson.build
980ece674de8a1c81e6d3daccc82fde16266b6c6
[thirdparty/systemd.git] / test / fuzz-regressions / meson.build
1 # SPDX-License-Identifier: LGPL-2.1+
2 #
3 # Copyright 2018 Zbigniew Jędrzejewski-Szmek
4 #
5 # systemd is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2.1 of the License, or
8 # (at your option) any later version.
9 #
10 # systemd is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with systemd; If not, see <http://www.gnu.org/licenses/>.
17
18 sanitize_address = custom_target(
19 'sanitize-address-fuzzers',
20 output : 'sanitize-address-fuzzers',
21 command : [meson_build_sh,
22 meson.source_root(),
23 '@OUTPUT@',
24 'fuzzers',
25 '-Db_lundef=false -Db_sanitize=address'])
26
27 sanitizers = [['address', sanitize_address]]
28
29 fuzz_regression_tests = '''
30 fuzz-dns-packet/oss-fuzz-5465
31 fuzz-dns-packet/issue-7888
32 fuzz-unit-file/oss-fuzz-6884
33 fuzz-unit-file/oss-fuzz-6885
34 fuzz-unit-file/oss-fuzz-6886
35 fuzz-unit-file/oss-fuzz-6892
36 fuzz-unit-file/oss-fuzz-6897
37 fuzz-unit-file/oss-fuzz-6897-evverx
38 fuzz-unit-file/oss-fuzz-6908
39 fuzz-unit-file/oss-fuzz-6917
40 fuzz-unit-file/oss-fuzz-6977
41 fuzz-unit-file/oss-fuzz-7004
42 '''.split()