From: Michael Vogt Date: Wed, 13 Oct 2010 10:04:33 +0000 (+0200) Subject: test/integration/framework: look for ../aptconfig.conf as well to fix test failure... X-Git-Tag: 0.9.13.exp1ubuntu1~248 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/2c53e7d1a82e2bfe44151ac9d1ac2043fca09efa?ds=sidebyside;hp=--cc test/integration/framework: look for ../aptconfig.conf as well to fix test failure on amd64 --- 2c53e7d1a82e2bfe44151ac9d1ac2043fca09efa diff --git a/test/integration/framework b/test/integration/framework index a515ce070..2d9ed3503 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -64,6 +64,8 @@ runapt() { msgdebug "Executing: ${CCMD}$*${CDEBUG} " if [ -f ./aptconfig.conf ]; then APT_CONFIG=aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$* + elif [ -f ../aptconfig.conf ]; then + APT_CONFIG=../aptconfig.conf LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$* else LD_LIBRARY_PATH=${BUILDDIRECTORY} ${BUILDDIRECTORY}/$* fi