test(manpage): ignore experimental options

This commit is contained in:
Marcus Holland-Moritz 2025-05-29 17:08:11 +02:00
parent 7321826207
commit 1fb7b34e9f

View File

@ -140,6 +140,9 @@ parse_options(std::string const& text, std::regex const& re, bool is_fuse) {
}
}
}
if (long_opt.starts_with("experimental-")) {
continue;
}
options[long_opt] = short_opt;
}
}