New comment by jcgruenhage on void-packages repository https://github.com/void-linux/void-packages/pull/39250#issuecomment-1246523385 Comment: Okay, so I looked a bit into the test failures, and it's basically this bit not working: ```sh start_server() { # start a server echo -n "Starting 'atftpd "${SERVER_ARGS/ \*/ /}"', " $ATFTPD $SERVER_ARGS > $SERVER_LOG & if [ $? != 0 ]; then echo "Error starting server." exit 1 fi sleep 1 ATFTPD_PID=$! # test if server process exists if ! ps -p $ATFTPD_PID >/dev/null 2>&1 ; then echo "Server process died!" exit 1 fi echo "PID: $ATFTPD_PID" trap stop_and_clean EXIT SIGINT SIGTERM } ``` It prints out that the server process has died, but that wasn't actually accurate. The server was still running, and the test script was hanging until I explicitly stopped it. Unless anyone has a more concrete idea on why that is, I'd just mark this as make_check=no for now.