src_test() contains: while ! mysqladmin ping --socket="${T}/mysql/mysql.sock" --silent ; do sleep 1 done However, it does not define any limiting conditions, so if `mysqladmin ping` keeps failing, the test phase hangs forever. In this case, mysqladmin fails because of: ^Gmysqladmin: Can't read dir of '/etc/mysql/mysql.d' (Errcode: 2 "No such file or directory") Fatal error in defaults handling. Program aborted i.e. there are two issues here: 1) src_test() needs to fail after N unsuccessful attempts, 2) it needs to be fixed to work without /etc/mysql/mysql.d (or the directory needs to be guaranteed somehow?)
Created attachment 906854 [details] build.log (cut out the repeating message)