mirror of
https://github.com/ceph/ceph
synced 2025-04-01 00:26:47 +00:00
Merge pull request #22727 from dzafman/wip-21664
qa/standalone/scrub: When possible show side-by-side diff in addition to regular diff Reviewed-by: Kefu Chai <kchai@redhat.com>
This commit is contained in:
commit
663d96e934
@ -34,9 +34,15 @@ fi
|
||||
|
||||
if [ `uname` = FreeBSD ]; then
|
||||
SED=gsed
|
||||
DIFFCOLOPTS=""
|
||||
KERNCORE="kern.corefile"
|
||||
else
|
||||
SED=sed
|
||||
termwidth=$(stty -a | head -1 | sed -e 's/.*columns \([0-9]*\).*/\1/')
|
||||
if [ -n "$termwidth" -a "$termwidth" != "0" ]; then
|
||||
termwidth="-W ${termwidth}"
|
||||
fi
|
||||
DIFFCOLOPTS="-y $termwidth"
|
||||
KERNCORE="kernel.core_pattern"
|
||||
fi
|
||||
|
||||
@ -2075,6 +2081,15 @@ function inject_eio() {
|
||||
done
|
||||
}
|
||||
|
||||
function multidiff() {
|
||||
if ! diff $@ ; then
|
||||
if [ "$DIFFCOLOPTS" = "" ]; then
|
||||
return 1
|
||||
fi
|
||||
diff $DIFFCOLOPTS $@
|
||||
fi
|
||||
}
|
||||
|
||||
# Local Variables:
|
||||
# compile-command: "cd ../../src ; make -j4 && ../qa/standalone/ceph-helpers.sh TESTS # test_get_config"
|
||||
# End:
|
||||
|
@ -1334,7 +1334,7 @@ function TEST_corrupt_scrub_replicated() {
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | jq '.inconsistents' | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save1.json
|
||||
@ -2562,7 +2562,7 @@ EOF
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | jq '.inconsistents' | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save2.json
|
||||
@ -3302,7 +3302,7 @@ function corrupt_scrub_erasure() {
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | jq '.inconsistents' | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save3.json
|
||||
@ -4716,7 +4716,7 @@ EOF
|
||||
fi
|
||||
|
||||
jq "$jqfilter" $dir/json | jq '.inconsistents' | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
if [ "$allow_overwrites" = "true" ]
|
||||
@ -5082,7 +5082,7 @@ function TEST_corrupt_snapset_scrub_rep() {
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | jq '.inconsistents' | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save6.json
|
||||
|
@ -207,7 +207,7 @@ function TEST_scrub_snaps() {
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
|
||||
rados list-inconsistent-snapset $pgid > $dir/json || return 1
|
||||
|
||||
@ -652,7 +652,7 @@ EOF
|
||||
EOF
|
||||
|
||||
jq "$jqfilter" $dir/json | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save1.json
|
||||
@ -1100,7 +1100,7 @@ EOF
|
||||
fi
|
||||
|
||||
jq "$jqfilter" $dir/json | python -c "$sortkeys" > $dir/csjson
|
||||
diff ${DIFFCOLOPTS} $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
multidiff $dir/checkcsjson $dir/csjson || test $getjson = "yes" || return 1
|
||||
if test $getjson = "yes"
|
||||
then
|
||||
jq '.' $dir/json > save1.json
|
||||
|
Loading…
Reference in New Issue
Block a user