Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jewel: test fails due to The UNIX domain socket path #12151

Merged
1 commit merged into from Dec 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions qa/workunits/ceph-helpers.sh
Expand Up @@ -1442,7 +1442,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
Expand Down Expand Up @@ -1481,7 +1481,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
Expand Down
2 changes: 1 addition & 1 deletion src/test/vstart_wrapper.sh
Expand Up @@ -19,7 +19,7 @@
source $CEPH_ROOT/qa/workunits/ceph-helpers.sh

export CEPH_VSTART_WRAPPER=1
export CEPH_DIR="$PWD/testdir/test-$CEPH_PORT"
export CEPH_DIR="$PWD/td/t-$CEPH_PORT"
export CEPH_DEV_DIR="$CEPH_DIR/dev"
export CEPH_OUT_DIR="$CEPH_DIR/out"

Expand Down