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