diff --git a/.gitignore b/.gitignore index 9d6945994e75f..eda9b48c5c227 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ core # Files generated by running tests *.log -/src/testdir +/src/td # specific local dir files /build-doc diff --git a/qa/workunits/ceph-helpers.sh b/qa/workunits/ceph-helpers.sh index 265dcd227b14e..d309001dd8027 100755 --- a/qa/workunits/ceph-helpers.sh +++ b/qa/workunits/ceph-helpers.sh @@ -1457,7 +1457,7 @@ function test_wait_background() { # @return 0 on success, 1 on error # function main() { - local dir=testdir/$1 + local dir=td/$1 shift shopt -s -o xtrace @@ -1496,7 +1496,7 @@ function run_tests() { export CEPH_CONF=/dev/null local funcs=${@:-$(set | sed -n -e 's/^\(test_[0-9a-z_]*\) .*/\1/p')} - local dir=testdir/ceph-helpers + local dir=td/ceph-helpers for func in $funcs ; do $func $dir || return 1 diff --git a/src/test/vstart_wrapper.sh b/src/test/vstart_wrapper.sh index da9cf956e33aa..2e05608799cb7 100755 --- a/src/test/vstart_wrapper.sh +++ b/src/test/vstart_wrapper.sh @@ -19,7 +19,7 @@ source $CEPH_ROOT/qa/workunits/ceph-helpers.sh export CEPH_VSTART_WRAPPER=1 -export CEPH_DIR="${TMPDIR:-$PWD}/testdir/test-$CEPH_PORT" +export CEPH_DIR="${TMPDIR:-$PWD}/td/t-$CEPH_PORT" export CEPH_DEV_DIR="$CEPH_DIR/dev" export CEPH_OUT_DIR="$CEPH_DIR/out"