New comment by r-ricci on void-packages repository https://github.com/void-linux/void-packages/pull/36240#issuecomment-1172534719 Comment: The test failing on i686 should be disabled. ```diff --- a/srcpkgs/rclone/template +++ b/srcpkgs/rclone/template @@ -28,6 +28,10 @@ pre_build() { do_check() { rm cmd/serve/docker/docker_test.go + # could time out on i686 and it's deprecated + # https://github.com/rclone/rclone/issues/5784#issuecomment-961520934 + rm backend/cache/cache_test.go + # equivalent to quicktest target of Makefile RCLONE_CONFIG="/notfound" go test -tags "$go_build_tags" ./... } ```