tests: fixed tests to not use host's xbps.d confdir.

This commit is contained in:
Juan RP 2019-12-28 13:42:30 +01:00
parent 34471902ed
commit 2e08cbef7a
No known key found for this signature in database
GPG Key ID: AF19F6CB482F9368

View File

@ -13,7 +13,7 @@ native_body() {
else else
arch=$(uname -m) arch=$(uname -m)
fi fi
atf_check_equal $(xbps-uhelper arch) $arch atf_check_equal $(xbps-uhelper -r $PWD arch) $arch
} }
atf_test_case env atf_test_case env
@ -23,7 +23,7 @@ env_head() {
} }
env_body() { env_body() {
export XBPS_ARCH=foo export XBPS_ARCH=foo
atf_check_equal $(xbps-uhelper arch) foo atf_check_equal $(xbps-uhelper -r $PWD arch) foo
} }
atf_test_case conf atf_test_case conf
@ -34,7 +34,7 @@ conf_head() {
conf_body() { conf_body() {
mkdir -p xbps.d mkdir -p xbps.d
echo "architecture=NULL" > xbps.d/arch.conf echo "architecture=NULL" > xbps.d/arch.conf
atf_check_equal $(xbps-uhelper -C $PWD/xbps.d arch) NULL atf_check_equal $(xbps-uhelper -r $PWD -C $PWD/xbps.d arch) NULL
} }
atf_init_test_cases() { atf_init_test_cases() {