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

tests: port uniqueness reminder #6387

Merged
1 commit merged into from Oct 27, 2015
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: 1 addition & 1 deletion qa/workunits/ceph-helpers.sh
Expand Up @@ -1184,7 +1184,7 @@ function run_tests() {
PS4='${BASH_SOURCE[0]}:$LINENO: ${FUNCNAME[0]}: '

export PATH=":$PATH"
export CEPH_MON="127.0.0.1:7109"
export CEPH_MON="127.0.0.1:7109" # git grep '\<7109\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/erasure-code/test-erasure-code.sh
Expand Up @@ -22,7 +22,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7101"
export CEPH_MON="127.0.0.1:7101" # git grep '\<7101\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/erasure-code/test-erasure-eio.sh
Expand Up @@ -22,7 +22,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7112"
export CEPH_MON="127.0.0.1:7112" # git grep '\<7112\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/libradosstriper/rados-striper.sh
Expand Up @@ -20,7 +20,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7116"
export CEPH_MON="127.0.0.1:7116" # git grep '\<7116\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
6 changes: 3 additions & 3 deletions src/test/mon/misc.sh
Expand Up @@ -21,7 +21,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7102"
export CEPH_MON="127.0.0.1:7102" # git grep '\<7102\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down Expand Up @@ -89,8 +89,8 @@ function TEST_mon_add_to_single_mon() {
local dir=$1

fsid=$(uuidgen)
MONA=127.0.0.1:7117
MONB=127.0.0.1:7118
MONA=127.0.0.1:7117 # git grep '\<7117\>' : there must be only one
MONB=127.0.0.1:7118 # git grep '\<7118\>' : there must be only one
CEPH_ARGS_orig=$CEPH_ARGS
CEPH_ARGS="--fsid=$fsid --auth-supported=none "
CEPH_ARGS+="--mon-initial-members=a "
Expand Down
2 changes: 1 addition & 1 deletion src/test/mon/mkfs.sh
Expand Up @@ -23,7 +23,7 @@ export CEPH_CONF=/dev/null
unset CEPH_ARGS
MON_ID=a
MON_DIR=$DIR/$MON_ID
CEPH_MON=127.0.0.1:7110
CEPH_MON=127.0.0.1:7110 # git grep '\<7110\>' : there must be only one
TIMEOUT=360

function setup() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/mon/mon-ping.sh
Expand Up @@ -18,7 +18,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7119"
export CEPH_MON="127.0.0.1:7119" # git grep '\<7119\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/mon/mon-scrub.sh
Expand Up @@ -21,7 +21,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7120"
export CEPH_MON="127.0.0.1:7120" # git grep '\<7120\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
8 changes: 4 additions & 4 deletions src/test/mon/osd-crush.sh
Expand Up @@ -21,7 +21,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7104"
export CEPH_MON="127.0.0.1:7104" # git grep '\<7104\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down Expand Up @@ -241,9 +241,9 @@ function TEST_crush_tree() {
function TEST_crush_repair_faulty_crushmap() {
local dir=$1
fsid=$(uuidgen)
MONA=127.0.0.1:7113
MONB=127.0.0.1:7114
MONC=127.0.0.1:7115
MONA=127.0.0.1:7113 # git grep '\<7113\>' : there must be only one
MONB=127.0.0.1:7114 # git grep '\<7114\>' : there must be only one
MONC=127.0.0.1:7115 # git grep '\<7115\>' : there must be only one
CEPH_ARGS_orig=$CEPH_ARGS
CEPH_ARGS="--fsid=$fsid --auth-supported=none "
CEPH_ARGS+="--mon-initial-members=a,b,c "
Expand Down
2 changes: 1 addition & 1 deletion src/test/mon/osd-erasure-code-profile.sh
Expand Up @@ -21,7 +21,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7108"
export CEPH_MON="127.0.0.1:7108" # git grep '\<7108\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/mon/osd-pool-create.sh
Expand Up @@ -21,7 +21,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7105"
export CEPH_MON="127.0.0.1:7105" # git grep '\<7105\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/osd/osd-bench.sh
Expand Up @@ -22,7 +22,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7106"
export CEPH_MON="127.0.0.1:7106" # git grep '\<7106\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/osd/osd-config.sh
Expand Up @@ -22,7 +22,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7100"
export CEPH_MON="127.0.0.1:7100" # git grep '\<7100\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/osd/osd-copy-from.sh
Expand Up @@ -23,7 +23,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7111"
export CEPH_MON="127.0.0.1:7111" # git grep '\<7111\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down
2 changes: 1 addition & 1 deletion src/test/osd/osd-scrub-repair.sh
Expand Up @@ -20,7 +20,7 @@ function run() {
local dir=$1
shift

export CEPH_MON="127.0.0.1:7107"
export CEPH_MON="127.0.0.1:7107" # git grep '\<7107\>' : there must be only one
export CEPH_ARGS
CEPH_ARGS+="--fsid=$(uuidgen) --auth-supported=none "
CEPH_ARGS+="--mon-host=$CEPH_MON "
Expand Down