From 42a59fc1b69861a1d907c651b88444983e8b6f97 Mon Sep 17 00:00:00 2001 From: John Spray Date: Sun, 6 Nov 2016 11:02:11 +0000 Subject: [PATCH] tasks/vstart_runner: fix paths in docstring Should have been updated when this file moved. Signed-off-by: John Spray --- tasks/vstart_runner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/vstart_runner.py b/tasks/vstart_runner.py index 012ec76133531..8bfab70b53b00 100644 --- a/tasks/vstart_runner.py +++ b/tasks/vstart_runner.py @@ -12,16 +12,16 @@ Usage (assuming teuthology, ceph, ceph-qa-suite checked out in ~/git): # Start a vstart cluster MDS=2 MON=1 OSD=3 ../src/vstart.sh -n # Invoke a test using this script, with PYTHONPATH set appropriately - python ~/git/ceph-qa-suite/tasks/cephfs/vstart_runner.py + python ~/git/ceph-qa-suite/tasks/vstart_runner.py # Alternatively, if you use different paths, specify them as follows: - LD_LIBRARY_PATH=`pwd`/lib PYTHONPATH=~/git/teuthology:~/git/ceph-qa-suite:`pwd`/../src/pybind:`pwd`/lib/cython_modules/lib.2 python ~/git/ceph-qa-suite/tasks/cephfs/vstart_runner.py + LD_LIBRARY_PATH=`pwd`/lib PYTHONPATH=~/git/teuthology:~/git/ceph-qa-suite:`pwd`/../src/pybind:`pwd`/lib/cython_modules/lib.2 python ~/git/ceph-qa-suite/tasks/vstart_runner.py # If you wish to drop to a python shell on failures, use --interactive: - python ~/git/ceph-qa-suite/tasks/cephfs/vstart_runner.py --interactive + python ~/git/ceph-qa-suite/tasks/vstart_runner.py --interactive # If you wish to run a named test case, pass it as an argument: - python ~/git/ceph-qa-suite/tasks/cephfs/vstart_runner.py tasks.cephfs.test_data_scan + python ~/git/ceph-qa-suite/tasks/vstart_runner.py tasks.cephfs.test_data_scan """ -- 2.39.5