New comment by tornaria on void-packages repository https://github.com/void-linux/void-packages/pull/34131#issuecomment-972905223 Comment: ~TL;DR: don't merge now, I'll make CI pass.~ [Edit: CI passes now, please merge :smile:] What happened: there's another test that assumes non-root but for some reason passes on my local xbps-src so I didn't disable it, but I will so we can get CI to pass (I like green checkmarks, they make me salivate). For reference: https://github.com/owncloud/client/commit/d987a7e7cb19367d708e21f9ef881afecffe35a3 That patch is merged in the development branch of owncloudclient. However, it tests for root with `getuid() == 0` which, at least on my local xbps-src, is false, so that patch alone is not enough to pass tests. What's the recommended way to change that so it works properly in xbps-src (the only thing that comes to my mind is to replace `getuid() == 0` by `1` and be done with it, but I don't think upstream will accept that change -- if only there was a way to fix it that was upstream-friendly...).