Hello, On Thu, May 14, 2026 at 01:33:26AM +0200, Gioele Barabucci wrote: > Source: universal-ctags > Version: 6.2.1-1 > Usertags: pidof-without-procps [...] > ``` > path: universal-ctags_6.2.1-1/Tmain/unreadable-input.d/run.sh > . ../utils.sh > if ! type pidof > /dev/null 2>&1; then > # pidof is needed to find auditd. > skip "pidof command is not available" > > > path: universal-ctags_6.2.1-1/Tmain/unreadable-input.d/run.sh > fi > if ! pidof auditd > /dev/null 2>&1; then > # sudo expects auditd is running. > skip "auditd is not running" > ``` > > Feel free to close this issue if this is a false positive (for example > if this code is in an unreachable code path).
The test is run at build time and the build logs contains: ``` Testing unreadable-input ------------------------------------------------------------ [33mskipped[m (auditd is not running) Testing simple-pkgconfig as PkgConfig [32mpassed[m ``` If pidof where not available at all, the test code would simply bail slighly before.... so no practical difference. Either way, the test will be skipped - just for different reasons (pidof not available or currently because auditd is not detected as running). I think the bug report can thus simply be closed. Someone might want to make the test not be skipped in the future, but then they could add the needed dependencies at that time. Regards, Andreas Henriksson

