diff options
Diffstat (limited to 'tools/testing/ktest/sample.conf')
-rw-r--r-- | tools/testing/ktest/sample.conf | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/testing/ktest/sample.conf b/tools/testing/ktest/sample.conf index 0a290fb4cd5e..172eec4517fb 100644 --- a/tools/testing/ktest/sample.conf +++ b/tools/testing/ktest/sample.conf | |||
@@ -328,6 +328,13 @@ | |||
328 | # For a virtual machine with guest name "Guest". | 328 | # For a virtual machine with guest name "Guest". |
329 | #CONSOLE = virsh console Guest | 329 | #CONSOLE = virsh console Guest |
330 | 330 | ||
331 | # Signal to send to kill console. | ||
332 | # ktest.pl will create a child process to monitor the console. | ||
333 | # When the console is finished, ktest will kill the child process | ||
334 | # with this signal. | ||
335 | # (default INT) | ||
336 | #CLOSE_CONSOLE_SIGNAL = HUP | ||
337 | |||
331 | # Required version ending to differentiate the test | 338 | # Required version ending to differentiate the test |
332 | # from other linux builds on the system. | 339 | # from other linux builds on the system. |
333 | #LOCALVERSION = -test | 340 | #LOCALVERSION = -test |
@@ -1021,6 +1028,20 @@ | |||
1021 | # BISECT_BAD with BISECT_CHECK = good or | 1028 | # BISECT_BAD with BISECT_CHECK = good or |
1022 | # BISECT_CHECK = bad, respectively. | 1029 | # BISECT_CHECK = bad, respectively. |
1023 | # | 1030 | # |
1031 | # BISECT_TRIES = 5 (optional, default 1) | ||
1032 | # | ||
1033 | # For those cases that it takes several tries to hit a bug, | ||
1034 | # the BISECT_TRIES is useful. It is the number of times the | ||
1035 | # test is ran before it says the kernel is good. The first failure | ||
1036 | # will stop trying and mark the current SHA1 as bad. | ||
1037 | # | ||
1038 | # Note, as with all race bugs, there's no guarantee that if | ||
1039 | # it succeeds, it is really a good bisect. But it helps in case | ||
1040 | # the bug is some what reliable. | ||
1041 | # | ||
1042 | # You can set BISECT_TRIES to zero, and all tests will be considered | ||
1043 | # good, unless you also set BISECT_MANUAL. | ||
1044 | # | ||
1024 | # BISECT_RET_GOOD = 0 (optional, default undefined) | 1045 | # BISECT_RET_GOOD = 0 (optional, default undefined) |
1025 | # | 1046 | # |
1026 | # In case the specificed test returns something other than just | 1047 | # In case the specificed test returns something other than just |