ceph/qa/suites/rados/singleton/all
Patrick Donnelly b39f9d06dc
qa: fix symlinks indirectly pointing at qa to .qa
Building on the previous commit.

Command used:

$ find suites/ -type l -and -not -name .qa -execdir ~/fix.sh {} \;

fix.sh:
    #!/bin/bash

    link="$(readlink "$1")"

    echo $link
    dirlink="$(dirname "$link")"
    baselink="$(basename "$link")"

    while true; do
        echo $dirlink
        if [ "$dirlink" -ef ~/ceph/qa ]; then
            ln -nsf ".qa/$baselink" "$1"
            exit
        else
            baselink="$(basename "$dirlink")/$baselink"
            dirlink="$(dirname "$dirlink")"
            if [ "$dirlink" -ef . ]; then
                break
            fi
        fi
    done

Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
2018-06-26 11:48:38 -07:00
..
thrash-rados qa: fix symlinks indirectly pointing at qa to .qa 2018-06-26 11:48:38 -07:00
.qa qa: add .qa helper link 2018-06-26 11:33:48 -07:00
admin-socket.yaml
divergent_priors2.yaml
divergent_priors.yaml
dump-stuck.yaml
ec-lost-unfound.yaml qa/suites/rados/singleton/all/ec-lost-unfound: whitelist SLOW_OPS 2018-04-06 10:38:45 -05:00
erasure-code-nonregression.yaml
lost-unfound-delete.yaml
lost-unfound.yaml
max-pg-per-osd.from-mon.yaml
max-pg-per-osd.from-primary.yaml
max-pg-per-osd.from-replica.yaml
mon-auth-caps.yaml
mon-config-keys.yaml
mon-config.yaml
mon-seesaw.yaml qa/suites/rados/singleton/all/mon-seesaw: whitelist PG_AVAILABILITY 2018-04-04 08:26:57 -05:00
osd-backfill.yaml
osd-recovery-incomplete.yaml
osd-recovery.yaml
peer.yaml
pg-removal-interruption.yaml test: Need to escape parens in log-whitelist for grep 2018-05-21 09:47:59 -07:00
radostool.yaml
random-eio.yaml test: Need to escape parens in log-whitelist for grep 2018-05-21 09:47:59 -07:00
rebuild-mondb.yaml
recovery-preemption.yaml Merge pull request #19973 from liewegas/wip-peering-fast-dispatch 2018-04-06 11:48:11 -07:00
reg11184.yaml
resolve_stuck_peering.yaml
test_envlibrados_for_rocksdb.yaml
thrash_cache_writeback_proxy_none.yaml test: Need to escape parens in log-whitelist for grep 2018-05-21 09:47:59 -07:00
thrash-eio.yaml
watch-notify-same-primary.yaml