1# How to run individual LTP test case
2## 1. Compile VTS and LTP source code
3`$ make vts -j12`
4
5## 2. Start VTS10-TradeFed
6`$ vts10-tradefed`
7
8## 3. Run individual LTP test from VTS-TradeFed console
9`> run vts-kernel -m VtsKernelLtp -t <testname1,testname2,...>`
10
11Test names in filter can be any of the following formats:
12`<testsuite.testname>`, `<testsuite.testname_bitness>`
13
14It is recommended to include test suite, i.e., the first two formats above.
15
16Example:
17
18`> run vts-kernel -m VtsKernelLtp -t syscalls.accept01,mm.mmapstress05_64bit`
19
20Test cases specified in this filter will be run regardless of
21whether they are disabled in configuration, unless a specified test case name
22is not listed in the definitions or a required executable was not built.