Skip to content

Commit 351c11d

Browse files
committed
doc: update command line parameters according to new API
Signed-off-by: Andrea Cervesato <andrea.cervesato@suse.com>
1 parent 70dc9b7 commit 351c11d

1 file changed

Lines changed: 12 additions & 8 deletions

File tree

doc/users/quickstart.rst

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,29 +36,33 @@ Some basic commands are the following:
3636
kirk --run-suite syscalls
3737
3838
# run LTP syscalls testing suite on qemu VM
39-
kirk --sut qemu:image=folder/image.qcow2:user=root:password=root \
40-
--run-suite syscalls
39+
kirk --com qemu:image=folder/image.qcow2:user=root:password=root \
40+
--sut default:com=qemu \
41+
--run-suite syscalls
4142
4243
# run LTP syscalls testing suite via SSH
43-
kirk --sut ssh:host=myhost.com:user=root:key_file=myhost_id_rsa \
44-
--run-suite syscalls
44+
kirk --com ssh:host=myhost.com:user=root:key_file=myhost_id_rsa \
45+
--sut default:com=ssh \
46+
--run-suite syscalls
4547
4648
# run LTP syscalls testing suite in parallel on host using 16 workers
4749
kirk --run-suite syscalls --workers 16
4850
4951
# run LTP syscalls testing suite in parallel via SSH using 16 workers
50-
kirk --sut ssh:host=myhost.com:user=root:key_file=myhost_id_rsa \
51-
--run-suite syscalls --workers 16
52+
kirk --com ssh:host=myhost.com:user=root:key_file=myhost_id_rsa \
53+
--sut default:com=ssh \
54+
--run-suite syscalls --workers 16
5255
5356
# pass environment variables (list of key=value separated by ':')
5457
kirk --run-suite net.features \
55-
--env 'VIRT_PERF_THRESHOLD=180:LTP_NET_FEATURES_IGNORE_PERFORMANCE_FAILURE=1'
58+
--env 'VIRT_PERF_THRESHOLD=180:LTP_NET_FEATURES_IGNORE_PERFORMANCE_FAILURE=1'
5659
5760
It's possible to run a single command before running testing suites using
5861
``--run-command`` option as following:
5962

6063
.. code-block:: bash
6164
6265
kirk --run-command ./setup_sut.sh \
63-
--sut qemu:image=folder/image.qcow
66+
--com qemu:image=folder/image.qcow \
67+
--sut default:com=qemu
6468

0 commit comments

Comments
 (0)