]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
tasks/vstart_runner: fix default run-all
authorJohn Spray <john.spray@redhat.com>
Tue, 8 Nov 2016 11:41:00 +0000 (11:41 +0000)
committerJohn Spray <john.spray@redhat.com>
Tue, 8 Nov 2016 12:15:19 +0000 (12:15 +0000)
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 <john.spray@redhat.com>
tasks/vstart_runner.py

index 9eb66518975d45d56de555f0e947bcbeb402ccb1..2dd3a3bf92999ed08be0ea422f9720f89a426f8a 100644 (file)
@@ -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,