summaryrefslogtreecommitdiffstats
path: root/qa/suites/samba (follow)
Commit message (Collapse)AuthorAgeFilesLines
* qa: fix symlinks indirectly pointing at qa to .qaPatrick Donnelly2018-06-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* qa: add .qa helper linkPatrick Donnelly2018-06-265-0/+5
| | | | | | | | | | | | | This utilizes the recent feature in teuthology [1] to skip hidden files in suites when building the job matrix. Idea of this change is to enable referring to the top-level qa directory in a position-independent way such that copies of a suite to another location do not break any symlinks. [1] https://github.com/ceph/teuthology/pull/1185 Signed-off-by: Patrick Donnelly <pdonnell@redhat.com>
* Merge pull request #14198 from liewegas/wip-fsSage Weil2017-04-082-1/+1
|\ | | | | | | | | | | qa/suites: drop 'fs' facet, and add 'objectstore' facet where missing Reviewed-by: Josh Durgin <jdurgin@redhat.com> Reviewed-by: Jason Dillaman <dillaman@redhat.com>
| * qa/suites: add objectstore facet where it was missingSage Weil2017-03-281-0/+1
| | | | | | | | | | | | | | There are places where we were testing xfs vs btrfs on filestore and now want to cover both filestore and bluestore. Signed-off-by: Sage Weil <sage@redhat.com>
| * qa/suites: remove 'fs' facet from all testsSage Weil2017-03-281-1/+0
| | | | | | | | | | | | | | The objectstore facet now covers bluestore, filestore(xfs), and filestore(btrfs). Signed-off-by: Sage Weil <sage@redhat.com>
* | qa/suites: run mgr daemon(s)Sage Weil2017-03-291-1/+1
|/ | | | | | Everything up upgrade/, which will be slightly tricky. Signed-off-by: Sage Weil <sage@redhat.com>
* qa/suites/samba: Openstack volume configurationZack Cerza2017-02-241-0/+4
| | | | Signed-off-by: Zack Cerza <zack@redhat.com>
* move ceph-qa-suite dirs into qa/Sage Weil2016-12-1412-0/+104