From 589186164cfbb1e033b9dfad33c9bf82b9404b1c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 11 Sep 2013 01:28:25 -0400 Subject: test: change how we do sudo (to make sure we stay in the test environment) --- test/lib-conf-test.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'test/lib-conf-test.sh') diff --git a/test/lib-conf-test.sh b/test/lib-conf-test.sh index 86c11c6..0d028b8 100644 --- a/test/lib-conf-test.sh +++ b/test/lib-conf-test.sh @@ -23,11 +23,13 @@ it_sets_makepkg_vars_in_custom_file() { it_figures_out_HOME_when_root() { require sudo || return 0 + # This one is tricky, because it does the job too well, it will find + # the actual HOME, instead of the test environment HOME. Therefore, we + # will just check that [[ $HOME != /root ]] cd "$tmpdir" echo '. $(librelib conf.sh); echo "$LIBREHOME"' > test.sh - - LIBREHOME=$(sudo -EH bash ./test.sh) - [[ $LIBREHOME == $HOME ]] + LIBREHOME=$(testsudo bash ./test.sh) + [[ $LIBREHOME != /root ]] } it_respects_custom_HOME() { -- cgit v1.2.3