summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/basic/rpm.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/basic/rpm.t b/tests/basic/rpm.t
index 7ef9ac570..45818ef68 100755
--- a/tests/basic/rpm.t
+++ b/tests/basic/rpm.t
@@ -17,11 +17,11 @@ REPO=${PWD}
COMMIT=$(git describe)
mkdir ${RESULT_DIR}/sources
cd ${RESULT_DIR}/sources
-git clone -s file://${REPO} .
-git checkout ${COMMIT}
+git clone -q -s file://${REPO} .
+git checkout -q -b rpm-test ${COMMIT}
# build the .tar.gz
-[ -e configure ] || ./autogen.sh
+[ -e configure ] || ./autogen.sh 2>&1 > /dev/null
TEST ./configure --enable-fusermount
TEST make dist
@@ -72,7 +72,7 @@ done
# dependencies on the build-server :-/
# only remove ${RESULT_DIR} if we're not debugging
-[ "${DEBUG}" != "0" ] && rm -rf ${RESULT_DIR}
+[ "${DEBUG}" = "0" ] && rm -rf ${RESULT_DIR}
cleanup