OSSTEST_CONFIG still trumps both.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
v3: local-config not standalone.config
eval set -- "$TEMP"
-config=${OSSTEST_CONFIG-$HOME/.xen-osstest/config}
+if [ -n "${OSSTEST_CONFIG}" ]; then
+ config=${OSSTEST_CONFIG}
+elif [ -f local-config ]; then
+ config=local-config
+else
+ config=$HOME/.xen-osstest/config
+fi
flight="standalone"
host=
reuse=1 # Don't blow away machines by default