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: tests: make check fails on ext4 #9063

Merged
merged 2 commits into from May 11, 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
2 changes: 2 additions & 0 deletions qa/workunits/ceph-helpers.sh
Expand Up @@ -601,6 +601,8 @@ function activate_osd() {
ceph_args+=" --debug-osd=20"
ceph_args+=" --log-file=$dir/\$name.log"
ceph_args+=" --pid-file=$dir/\$name.pid"
ceph_args+=" --osd-max-object-name-len 460"
ceph_args+=" --osd-max-object-namespace-len 64"
ceph_args+=" "
ceph_args+="$@"
mkdir -p $osd_data
Expand Down
2 changes: 2 additions & 0 deletions src/ceph-disk/tests/ceph-disk.sh
Expand Up @@ -64,6 +64,8 @@ CEPH_ARGS+=" --debug-mon=20"
CEPH_ARGS+=" --debug-osd=20"
CEPH_ARGS+=" --debug-bdev=20"
CEPH_ARGS+=" --debug-bluestore=20"
CEPH_ARGS+=" --osd-max-object-name-len=460"
CEPH_ARGS+=" --osd-max-object-namespace-len=64"
CEPH_DISK_ARGS=
CEPH_DISK_ARGS+=" --statedir=$DIR"
CEPH_DISK_ARGS+=" --sysconfdir=$DIR"
Expand Down
2 changes: 1 addition & 1 deletion src/test/ceph_objectstore_tool.py
Expand Up @@ -139,7 +139,7 @@ def cat_file(level, filename):
def vstart(new, opt=""):
print "vstarting....",
NEW = new and "-n" or ""
call("MON=1 OSD=4 CEPH_PORT=7400 {path}/src/vstart.sh -l {new} -d mon osd {opt} > /dev/null 2>&1".format(new=NEW, opt=opt, path=CEPH_ROOT), shell=True)
call("MON=1 OSD=4 CEPH_PORT=7400 {path}/src/vstart.sh --short -l {new} -d mon osd {opt} > /dev/null 2>&1".format(new=NEW, opt=opt, path=CEPH_ROOT), shell=True)
print "DONE"


Expand Down
1 change: 1 addition & 0 deletions src/test/vstart_wrapper.sh
Expand Up @@ -31,6 +31,7 @@ function vstart_setup()
export LC_ALL=C # some tests are vulnerable to i18n
export PATH="$(pwd):${PATH}"
$CEPH_ROOT/src/vstart.sh \
--short \
-o 'paxos propose interval = 0.01' \
-n -l $CEPH_START || return 1
export CEPH_CONF=$CEPH_DIR/ceph.conf
Expand Down