summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-05-04 10:57:45 +0200
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-05-04 12:57:48 +0200
commit41d992cf5193e50b97f110d5a83823339c7307a8 (patch)
tree15b0f9a32a04a9fbbd9c2735980c3fffcc6b4adf /tools
parenta5398c774ba128d129f1370141cac0130576d683 (diff)
downloadsystemd-41d992cf5193e50b97f110d5a83823339c7307a8.tar.gz
fuzz-network-parser: drop ".network" and shorten names
All fuzzer inputs as .network files. Some had the suffix, others didn't. So drop it everywhere, and also shorten some other names.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/check-directives.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/check-directives.sh b/tools/check-directives.sh
index 0661da4d3b..8894322278 100755
--- a/tools/check-directives.sh
+++ b/tools/check-directives.sh
@@ -34,8 +34,8 @@ function generate_directives() {
ret=0
if ! diff \
<(generate_directives "$SOURCE_ROOT"/src/network/networkd-network-gperf.gperf | sort) \
- <(sort "$SOURCE_ROOT"/test/fuzz/fuzz-network-parser/directives.network); then
- echo "Looks like test/fuzz/fuzz-network-parser/directives.network hasn't been updated"
+ <(sort "$SOURCE_ROOT"/test/fuzz/fuzz-network-parser/directives); then
+ echo "Looks like test/fuzz/fuzz-network-parser/directives hasn't been updated"
ret=1
fi