New comment by tornaria on void-packages repository https://github.com/void-linux/void-packages/pull/32559#issuecomment-902655042 Comment: Could you try to figure out what's the issue with the failing test in i686? Here's how I easily test i686. In my void-packages I have a script named `xbps-src-i686` as follows: ```sh #! /bin/sh if [ "$1" = "binary-bootstrap" ] ; then set -- binary-bootstrap i686 fi ./xbps-src -m masterdir.i686 "$@" ``` Then you just use `./xbps-src-i686` instead of `./xbps-src` (remember to run `./xbps-src-i686 binary-bootstrap` once to begin). You can do the same for musl by replacing `i686` with `x86_64-musl`.