From: John Spray Date: Tue, 8 Nov 2016 11:41:00 +0000 (+0000) Subject: tasks/vstart_runner: fix default run-all X-Git-Tag: v11.1.1~58^2^2~52^2^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=530d03d3f8f8fba2d78be09cbcb6ff886e2c9816;p=ceph.git tasks/vstart_runner: fix default run-all This broke when path changed. It's a bit weird to run the cephfs tests by default now that vstart_runner is not cephfs-specific, but for the moment just restore the old behaviour. Signed-off-by: John Spray --- diff --git a/tasks/vstart_runner.py b/tasks/vstart_runner.py index 9eb66518975d..2dd3a3bf9299 100644 --- a/tasks/vstart_runner.py +++ b/tasks/vstart_runner.py @@ -911,9 +911,9 @@ def exec_test(): log.info("Loaded: {0}".format(list(module_suites))) overall_suite = suite.TestSuite(module_suites) else: - log.info("Excuting all tests") + log.info("Executing all cephfs tests") overall_suite = decorating_loader.discover( - os.path.dirname(os.path.abspath(__file__)) + os.path.join(os.path.dirname(os.path.abspath(__file__)), "cephfs") ) # Filter out tests that don't lend themselves to interactive running,