]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#3953] Do not run fuzzers with sudo. No longer required
authorAndrei Pavel <andrei@isc.org>
Tue, 17 Jun 2025 09:05:30 +0000 (12:05 +0300)
committerAndrei Pavel <andrei@isc.org>
Thu, 19 Jun 2025 14:16:55 +0000 (17:16 +0300)
fuzz/tests/meson.build

index 70bddfb774d0670c86bde3c57c6b9cc17a31f82c..4f5e1d41bc0a0f3c2c93158410e80fe70cc1433c 100644 (file)
@@ -1,14 +1,8 @@
-if not PASSWORDLESS_SUDO_SET_UP
-    subdir_done()
-endif
-
 foreach f : FUZZER_EXECUTABLES
     test(
         f.name(),
-        SUDO,
-        args: [f],
+        f,
         is_parallel: false,
         priority: -1,
-        suite: 'sudo-tests',
     )
 endforeach