Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 1 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 2 | # Config file for ktest.pl |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 3 | # |
| 4 | # Note, all paths must be absolute |
| 5 | # |
| 6 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 7 | # Options set in the beginning of the file are considered to be |
| 8 | # default options. These options can be overriden by test specific |
| 9 | # options, with the following exceptions: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 10 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 11 | # LOG_FILE |
| 12 | # CLEAR_LOG |
| 13 | # POWEROFF_ON_SUCCESS |
| 14 | # REBOOT_ON_SUCCESS |
| 15 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 16 | # Test specific options are set after the label: |
| 17 | # |
| 18 | # TEST_START |
| 19 | # |
| 20 | # The options after a TEST_START label are specific to that test. |
| 21 | # Each TEST_START label will set up a new test. If you want to |
| 22 | # perform a test more than once, you can add the ITERATE label |
| 23 | # to it followed by the number of times you want that test |
| 24 | # to iterate. If the ITERATE is left off, the test will only |
| 25 | # be performed once. |
| 26 | # |
| 27 | # TEST_START ITERATE 10 |
| 28 | # |
| 29 | # You can skip a test by adding SKIP (before or after the ITERATE |
| 30 | # and number) |
| 31 | # |
| 32 | # TEST_START SKIP |
| 33 | # |
| 34 | # TEST_START SKIP ITERATE 10 |
| 35 | # |
| 36 | # TEST_START ITERATE 10 SKIP |
| 37 | # |
| 38 | # The SKIP label causes the options and the test itself to be ignored. |
| 39 | # This is useful to set up several different tests in one config file, and |
| 40 | # only enabling the ones you want to use for a current test run. |
| 41 | # |
| 42 | # You can add default options anywhere in the file as well |
| 43 | # with the DEFAULTS tag. This allows you to have default options |
| 44 | # after the test options to keep the test options at the top |
| 45 | # of the file. You can even place the DEFAULTS tag between |
| 46 | # test cases (but not in the middle of a single test case) |
| 47 | # |
| 48 | # TEST_START |
| 49 | # MIN_CONFIG = /home/test/config-test1 |
| 50 | # |
| 51 | # DEFAULTS |
| 52 | # MIN_CONFIG = /home/test/config-default |
| 53 | # |
| 54 | # TEST_START ITERATE 10 |
| 55 | # |
| 56 | # The above will run the first test with MIN_CONFIG set to |
| 57 | # /home/test/config-test-1. Then 10 tests will be executed |
| 58 | # with MIN_CONFIG with /home/test/config-default. |
| 59 | # |
| 60 | # You can also disable defaults with the SKIP option |
| 61 | # |
| 62 | # DEFAULTS SKIP |
| 63 | # MIN_CONFIG = /home/test/config-use-sometimes |
| 64 | # |
| 65 | # DEFAULTS |
| 66 | # MIN_CONFIG = /home/test/config-most-times |
| 67 | # |
| 68 | # The above will ignore the first MIN_CONFIG. If you want to |
| 69 | # use the first MIN_CONFIG, remove the SKIP from the first |
| 70 | # DEFAULTS tag and add it to the second. Be careful, options |
| 71 | # may only be declared once per test or default. If you have |
| 72 | # the same option name under the same test or as default |
| 73 | # ktest will fail to execute, and no tests will run. |
| 74 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 75 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 76 | |
| 77 | #### Mandatory Default Options #### |
| 78 | |
| 79 | # These options must be in the default section, although most |
| 80 | # may be overridden by test options. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 81 | |
| 82 | # The machine hostname that you will test |
| 83 | #MACHINE = target |
| 84 | |
| 85 | # The box is expected to have ssh on normal bootup, provide the user |
| 86 | # (most likely root, since you need privileged operations) |
| 87 | #SSH_USER = root |
| 88 | |
| 89 | # The directory that contains the Linux source code |
| 90 | #BUILD_DIR = /home/test/linux.git |
| 91 | |
| 92 | # The directory that the objects will be built |
| 93 | # (can not be same as BUILD_DIR) |
| 94 | #OUTPUT_DIR = /home/test/build/target |
| 95 | |
| 96 | # The location of the compiled file to copy to the target |
| 97 | # (relative to OUTPUT_DIR) |
| 98 | #BUILD_TARGET = arch/x86/boot/bzImage |
| 99 | |
| 100 | # The place to put your image on the test machine |
| 101 | #TARGET_IMAGE = /boot/vmlinuz-test |
| 102 | |
| 103 | # A script or command to reboot the box |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 104 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 105 | # Here is a digital loggers power switch example |
| 106 | #POWER_CYCLE = wget --no-proxy -O /dev/null -q --auth-no-challenge 'http://admin:admin@power/outlet?5=CCL' |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 107 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 108 | # Here is an example to reboot a virtual box on the current host |
| 109 | # with the name "Guest". |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 110 | #POWER_CYCLE = virsh destroy Guest; sleep 5; virsh start Guest |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 111 | |
| 112 | # The script or command that reads the console |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 113 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 114 | # If you use ttywatch server, something like the following would work. |
| 115 | #CONSOLE = nc -d localhost 3001 |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 116 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 117 | # For a virtual machine with guest name "Guest". |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 118 | #CONSOLE = virsh console Guest |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 119 | |
| 120 | # Required version ending to differentiate the test |
| 121 | # from other linux builds on the system. |
| 122 | #LOCALVERSION = -test |
| 123 | |
| 124 | # The grub title name for the test kernel to boot |
| 125 | # (Only mandatory if REBOOT_TYPE = grub) |
| 126 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 127 | # Note, ktest.pl will not update the grub menu.lst, you need to |
| 128 | # manually add an option for the test. ktest.pl will search |
| 129 | # the grub menu.lst for this option to find what kernel to |
| 130 | # reboot into. |
| 131 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 132 | # For example, if in the /boot/grub/menu.lst the test kernel title has: |
| 133 | # title Test Kernel |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 134 | # kernel vmlinuz-test |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 135 | #GRUB_MENU = Test Kernel |
| 136 | |
| 137 | # A script to reboot the target into the test kernel |
| 138 | # (Only mandatory if REBOOT_TYPE = script) |
| 139 | #REBOOT_SCRIPT = |
| 140 | |
| 141 | #### Optional Config Options (all have defaults) #### |
| 142 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 143 | # Start a test setup. If you leave this off, all options |
| 144 | # will be default and the test will run once. |
| 145 | # This is a label and not really an option (it takes no value). |
| 146 | # You can append ITERATE and a number after it to iterate the |
| 147 | # test a number of times, or SKIP to ignore this test. |
| 148 | # |
| 149 | #TEST_START |
| 150 | #TEST_START ITERATE 5 |
| 151 | #TEST_START SKIP |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 152 | |
| 153 | # The default test type (default test) |
| 154 | # The test types may be: |
| 155 | # build - only build the kernel, do nothing else |
| 156 | # boot - build and boot the kernel |
| 157 | # test - build, boot and if TEST is set, run the test script |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 158 | # (If TEST is not set, it defaults back to boot) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 159 | # bisect - Perform a bisect on the kernel (see BISECT_TYPE below) |
| 160 | # patchcheck - Do a test on a series of commits in git (see PATCHCHECK below) |
| 161 | #TEST_TYPE = test |
| 162 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 163 | # Test to run if there is a successful boot and TEST_TYPE is test. |
| 164 | # Must exit with 0 on success and non zero on error |
| 165 | # default (undefined) |
| 166 | #TEST = ssh user@machine /root/run_test |
| 167 | |
| 168 | # The build type is any make config type or special command |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 169 | # (default randconfig) |
| 170 | # nobuild - skip the clean and build step |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 171 | # useconfig:/path/to/config - use the given config and run |
| 172 | # oldconfig on it. |
| 173 | # This option is ignored if TEST_TYPE is patchcheck or bisect |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 174 | #BUILD_TYPE = randconfig |
| 175 | |
| 176 | # The make command (default make) |
| 177 | # If you are building a 32bit x86 on a 64 bit host |
| 178 | #MAKE_CMD = CC=i386-gcc AS=i386-as make ARCH=i386 |
| 179 | |
Steven Rostedt | 8b37ca8 | 2010-11-02 14:58:33 -0400 | [diff] [blame] | 180 | # If you need an initrd, you can add a script or code here to install |
| 181 | # it. The environment variable KERNEL_VERSION will be set to the |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 182 | # kernel version that is used. Remember to add the initrd line |
| 183 | # to your grub menu.lst file. |
| 184 | # |
| 185 | # Here's a couple of examples to use: |
Steven Rostedt | 8b37ca8 | 2010-11-02 14:58:33 -0400 | [diff] [blame] | 186 | #POST_INSTALL = ssh user@target /sbin/mkinitrd --allow-missing -f /boot/initramfs-test.img $KERNEL_VERSION |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 187 | # |
| 188 | # or on some systems: |
| 189 | #POST_INSTALL = ssh user@target /sbin/dracut -f /boot/initramfs-test.img $KERNEL_VERSION |
Steven Rostedt | 8b37ca8 | 2010-11-02 14:58:33 -0400 | [diff] [blame] | 190 | |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 191 | # Way to reboot the box to the test kernel. |
| 192 | # Only valid options so far are "grub" and "script" |
| 193 | # (default grub) |
| 194 | # If you specify grub, it will assume grub version 1 |
| 195 | # and will search in /boot/grub/menu.lst for the title $GRUB_MENU |
| 196 | # and select that target to reboot to the kernel. If this is not |
| 197 | # your setup, then specify "script" and have a command or script |
| 198 | # specified in REBOOT_SCRIPT to boot to the target. |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 199 | # |
| 200 | # The entry in /boot/grub/menu.lst must be entered in manually. |
| 201 | # The test will not modify that file. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 202 | #REBOOT_TYPE = grub |
| 203 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 204 | # Line to define a successful boot up in console output. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 205 | # This is what the line contains, not the entire line. If you need |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 206 | # the entire line to match, then use regural expression syntax like: |
| 207 | # (do not add any quotes around it) |
| 208 | # |
| 209 | # SUCCESS_LINE = ^MyBox Login:$ |
| 210 | # |
| 211 | # (default "login:") |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 212 | #SUCCESS_LINE = login: |
| 213 | |
| 214 | # As the test reads the console, after it hits the SUCCESS_LINE |
| 215 | # the time it waits for the monitor to settle down between reads |
| 216 | # can usually be lowered. |
| 217 | # (in seconds) (default 1) |
| 218 | #BOOTED_TIMEOUT = 1 |
| 219 | |
| 220 | # The timeout in seconds when we consider the box hung after |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 221 | # the console stop producing output. Be sure to leave enough |
| 222 | # time here to get pass a reboot. Some machines may not produce |
| 223 | # any console output for a long time during a reboot. You do |
| 224 | # not want the test to fail just because the system was in |
| 225 | # the process of rebooting to the test kernel. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 226 | # (default 120) |
| 227 | #TIMEOUT = 120 |
| 228 | |
| 229 | # The location on the host where to write temp files |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 230 | # (default /tmp/ktest) |
| 231 | #TMP_DIR = /tmp/ktest |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 232 | |
| 233 | # In between tests, a reboot of the box may occur, and this |
| 234 | # is the time to wait for the console after it stops producing |
| 235 | # output. Some machines may not produce a large lag on reboot |
| 236 | # so this should accommodate it. |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 237 | # The difference between this and TIMEOUT, is that TIMEOUT happens |
| 238 | # when rebooting to the test kernel. This sleep time happens |
| 239 | # after a test has completed and we are about to start running |
| 240 | # another test. If a reboot to the reliable kernel happens, |
| 241 | # we wait SLEEP_TIME for the console to stop producing output |
| 242 | # before starting the next test. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 243 | # (default 60) |
| 244 | #SLEEP_TIME = 60 |
| 245 | |
| 246 | # The time in between bisects to sleep (in seconds) |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 247 | # (default 60) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 248 | #BISECT_SLEEP_TIME = 60 |
| 249 | |
| 250 | # Build without doing a make mrproper, or removing .config |
| 251 | # (default 0) |
| 252 | #BUILD_NOCLEAN = 0 |
| 253 | |
| 254 | # Reboot the target box on error (default 0) |
| 255 | #REBOOT_ON_ERROR = 0 |
| 256 | |
| 257 | # Power off the target on error (ignored if REBOOT_ON_ERROR is set) |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 258 | # Note, this is a DEFAULT section only option. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 259 | # (default 0) |
| 260 | #POWEROFF_ON_ERROR = 0 |
| 261 | |
| 262 | # Power off the target after all tests have completed successfully |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 263 | # Note, this is a DEFAULT section only option. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 264 | # (default 0) |
| 265 | #POWEROFF_ON_SUCCESS = 0 |
| 266 | |
| 267 | # Reboot the target after all test completed successfully (default 1) |
| 268 | # (ignored if POWEROFF_ON_SUCCESS is set) |
| 269 | #REBOOT_ON_SUCCESS = 1 |
| 270 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 271 | # In case there are isses with rebooting, you can specify this |
Steven Rostedt | 576f627 | 2010-11-02 14:58:38 -0400 | [diff] [blame] | 272 | # to always powercycle after this amount of time after calling |
| 273 | # reboot. |
| 274 | # Note, POWERCYCLE_AFTER_REBOOT = 0 does NOT disable it. It just |
| 275 | # makes it powercycle immediately after rebooting. Do not define |
| 276 | # it if you do not want it. |
| 277 | # (default undefined) |
| 278 | #POWERCYCLE_AFTER_REBOOT = 5 |
| 279 | |
| 280 | # In case there's isses with halting, you can specify this |
| 281 | # to always poweroff after this amount of time after calling |
| 282 | # halt. |
| 283 | # Note, POWEROFF_AFTER_HALT = 0 does NOT disable it. It just |
| 284 | # makes it poweroff immediately after halting. Do not define |
| 285 | # it if you do not want it. |
| 286 | # (default undefined) |
| 287 | #POWEROFF_AFTER_HALT = 20 |
| 288 | |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 289 | # Stop testing if a build fails. If set, the script will end if |
| 290 | # a failure is detected, otherwise it will save off the .config, |
| 291 | # dmesg and bootlog in a directory called |
| 292 | # MACHINE-TEST_TYPE_BUILD_TYPE-fail-yyyymmddhhmmss |
| 293 | # if the STORE_FAILURES directory is set. |
| 294 | # (default 1) |
| 295 | # Note, even if this is set to zero, there are some errors that still |
| 296 | # stop the tests. |
| 297 | #DIE_ON_FAILURE = 1 |
| 298 | |
| 299 | # Directory to store failure directories on failure. If this is not |
| 300 | # set, DIE_ON_FAILURE=0 will not save off the .config, dmesg and |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 301 | # bootlog. This option is ignored if DIE_ON_FAILURE is not set. |
| 302 | # (default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 303 | #STORE_FAILURES = /home/test/failures |
| 304 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 305 | # A script or command to power off the box (default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 306 | # Needed for POWEROFF_ON_ERROR and SUCCESS |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 307 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 308 | # Example for digital loggers power switch: |
| 309 | #POWER_OFF = wget --no-proxy -O /dev/null -q --auth-no-challenge 'http://admin:admin@power/outlet?5=OFF' |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 310 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 311 | # Example for a virtual guest call "Guest". |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 312 | #POWER_OFF = virsh destroy Guest |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 313 | |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 314 | # Any build options for the make of the kernel (not for other makes, like configs) |
| 315 | # (default "") |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 316 | #BUILD_OPTIONS = -j20 |
| 317 | |
| 318 | # Optional log file to write the status (recommended) |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 319 | # Note, this is a DEFAULT section only option. |
| 320 | # (default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 321 | #LOG_FILE = /home/test/logfiles/target.log |
| 322 | |
| 323 | # Remove old logfile if it exists before starting all tests. |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 324 | # Note, this is a DEFAULT section only option. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 325 | # (default 0) |
| 326 | #CLEAR_LOG = 0 |
| 327 | |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 328 | # The min config that is needed to build for the machine |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 329 | # A nice way to create this is with the following: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 330 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 331 | # $ ssh target |
| 332 | # $ lsmod > mymods |
| 333 | # $ scp mymods host:/tmp |
| 334 | # $ exit |
| 335 | # $ cd linux.git |
| 336 | # $ rm .config |
| 337 | # $ make LSMOD=mymods localyesconfig |
| 338 | # $ grep '^CONFIG' .config > /home/test/config-min |
| 339 | # |
| 340 | # If you want even less configs: |
| 341 | # |
| 342 | # log in directly to target (do not ssh) |
| 343 | # |
| 344 | # $ su |
| 345 | # # lsmod | cut -d' ' -f1 | xargs rmmod |
| 346 | # |
| 347 | # repeat the above several times |
| 348 | # |
| 349 | # # lsmod > mymods |
| 350 | # # reboot |
| 351 | # |
| 352 | # May need to reboot to get your network back to copy the mymods |
| 353 | # to the host, and then remove the previous .config and run the |
| 354 | # localyesconfig again. The CONFIG_MIN generated like this will |
| 355 | # not guarantee network activity to the box so the TEST_TYPE of |
| 356 | # test may fail. |
| 357 | # |
| 358 | # You might also want to set: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 359 | # CONFIG_CMDLINE="<your options here>" |
| 360 | # randconfig may set the above and override your real command |
| 361 | # line options. |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 362 | # (default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 363 | #MIN_CONFIG = /home/test/config-min |
| 364 | |
| 365 | # Sometimes there's options that just break the boot and |
| 366 | # you do not care about. Here are a few: |
| 367 | # # CONFIG_STAGING is not set |
| 368 | # Staging drivers are horrible, and can break the build. |
| 369 | # # CONFIG_SCSI_DEBUG is not set |
| 370 | # SCSI_DEBUG may change your root partition |
| 371 | # # CONFIG_KGDB_SERIAL_CONSOLE is not set |
| 372 | # KGDB may cause oops waiting for a connection that's not there. |
| 373 | # This option points to the file containing config options that will be prepended |
| 374 | # to the MIN_CONFIG (or be the MIN_CONFIG if it is not set) |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 375 | # |
| 376 | # Note, config options in MIN_CONFIG will override these options. |
| 377 | # |
| 378 | # (default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 379 | #ADD_CONFIG = /home/test/config-broken |
| 380 | |
| 381 | #### Per test run options #### |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 382 | # The following options are only allowed in TEST_START sections. |
| 383 | # They are ignored in the DEFAULTS sections. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 384 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 385 | # All of these are optional and undefined by default, although |
| 386 | # some of these options are required for TEST_TYPE of patchcheck |
| 387 | # and bisect. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 388 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 389 | # |
| 390 | # CHECKOUT = branch |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 391 | # |
| 392 | # If the BUILD_DIR is a git repository, then you can set this option |
| 393 | # to checkout the given branch before running the TEST. If you |
| 394 | # specify this for the first run, that branch will be used for |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 395 | # all preceding tests until a new CHECKOUT is set. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 396 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 397 | # |
| 398 | # |
| 399 | # For TEST_TYPE = patchcheck |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 400 | # |
| 401 | # This expects the BUILD_DIR to be a git repository, and |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 402 | # will checkout the PATCHCHECK_START commit. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 403 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 404 | # The option BUILD_TYPE will be ignored. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 405 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 406 | # The MIN_CONFIG will be used for all builds of the patchcheck. The build type |
| 407 | # used for patchcheck is oldconfig. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 408 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 409 | # PATCHCHECK_START is required and is the first patch to |
| 410 | # test (the SHA1 of the commit). You may also specify anything |
| 411 | # that git checkout allows (branch name, tage, HEAD~3). |
| 412 | # |
| 413 | # PATCHCHECK_END is the last patch to check (default HEAD) |
| 414 | # |
| 415 | # PATCHCHECK_TYPE is required and is the type of test to run: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 416 | # build, boot, test. |
| 417 | # |
| 418 | # Note, the build test will look for warnings, if a warning occurred |
| 419 | # in a file that a commit touches, the build will fail. |
| 420 | # |
| 421 | # If BUILD_NOCLEAN is set, then make mrproper will not be run on |
| 422 | # any of the builds, just like all other TEST_TYPE tests. But |
| 423 | # what makes patchcheck different from the other tests, is if |
| 424 | # BUILD_NOCLEAN is not set, only the first and last patch run |
| 425 | # make mrproper. This helps speed up the test. |
| 426 | # |
| 427 | # Example: |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 428 | # TEST_START |
| 429 | # TEST_TYPE = patchcheck |
| 430 | # CHECKOUT = mybranch |
| 431 | # PATCHCHECK_TYPE = boot |
| 432 | # PATCHCHECK_START = 747e94ae3d1b4c9bf5380e569f614eb9040b79e7 |
| 433 | # PATCHCHEKC_END = HEAD~2 |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 434 | # |
| 435 | # |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 436 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 437 | # For TEST_TYPE = bisect |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 438 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 439 | # You can specify a git bisect if the BUILD_DIR is a git repository. |
| 440 | # The MIN_CONFIG will be used for all builds of the bisect. The build type |
| 441 | # used for bisecting is oldconfig. |
| 442 | # |
| 443 | # The option BUILD_TYPE will be ignored. |
| 444 | # |
| 445 | # BISECT_TYPE is the type of test to perform: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 446 | # build - bad fails to build |
| 447 | # boot - bad builds but fails to boot |
| 448 | # test - bad boots but fails a test |
| 449 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 450 | # BISECT_GOOD is the commit (SHA1) to label as good (accepts all git good commit types) |
| 451 | # BISECT_BAD is the commit to label as bad (accepts all git bad commit types) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 452 | # |
| 453 | # The above three options are required for a bisect operation. |
| 454 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 455 | # BISECT_REPLAY = /path/to/replay/file (optional, default undefined) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 456 | # |
| 457 | # If an operation failed in the bisect that was not expected to |
| 458 | # fail. Then the test ends. The state of the BUILD_DIR will be |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 459 | # left off at where the failure occurred. You can examine the |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 460 | # reason for the failure, and perhaps even find a git commit |
| 461 | # that would work to continue with. You can run: |
| 462 | # |
| 463 | # git bisect log > /path/to/replay/file |
| 464 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 465 | # The adding: |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 466 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 467 | # BISECT_REPLAY= /path/to/replay/file |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 468 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 469 | # And running the test again. The test will perform the initial |
| 470 | # git bisect start, git bisect good, and git bisect bad, and |
| 471 | # then it will run git bisect replay on this file, before |
| 472 | # continuing with the bisect. |
| 473 | # |
| 474 | # BISECT_START = commit (optional, default undefined) |
| 475 | # |
| 476 | # As with BISECT_REPLAY, if the test failed on a commit that |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 477 | # just happen to have a bad commit in the middle of the bisect, |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 478 | # and you need to skip it. If BISECT_START is defined, it |
| 479 | # will checkout that commit after doing the initial git bisect start, |
| 480 | # git bisect good, git bisect bad, and running the git bisect replay |
| 481 | # if the BISECT_REPLAY is set. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 482 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 483 | # BISECT_REVERSE = 1 (optional, default 0) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 484 | # |
| 485 | # In those strange instances where it was broken forever |
| 486 | # and you are trying to find where it started to work! |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 487 | # Set BISECT_GOOD to the commit that was last known to fail |
| 488 | # Set BISECT_BAD to the commit that is known to start working. |
| 489 | # With BISECT_REVERSE = 1, The test will consider failures as |
| 490 | # good, and success as bad. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 491 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 492 | # BISECT_CHECK = 1 (optional, default 0) |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 493 | # |
| 494 | # Just to be sure the good is good and bad is bad, setting |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 495 | # BISECT_CHECK to 1 will start the bisect by first checking |
| 496 | # out BISECT_BAD and makes sure it fails, then it will check |
| 497 | # out BISECT_GOOD and makes sure it succeeds before starting |
| 498 | # the bisect (it works for BISECT_REVERSE too). |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 499 | # |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 500 | # You can limit the test to just check BISECT_GOOD or |
| 501 | # BISECT_BAD with BISECT_CHECK = good or |
| 502 | # BISECT_CHECK = bad, respectively. |
Steven Rostedt | a75fece | 2010-11-02 14:58:27 -0400 | [diff] [blame] | 503 | # |
| 504 | # Example: |
Steven Rostedt | a57419b | 2010-11-02 15:13:54 -0400 | [diff] [blame^] | 505 | # TEST_START |
| 506 | # TEST_TYPE = bisect |
| 507 | # BISECT_GOOD = v2.6.36 |
| 508 | # BISECT_BAD = b5153163ed580e00c67bdfecb02b2e3843817b3e |
| 509 | # BISECT_TYPE = build |
| 510 | # MIN_CONFIG = /home/test/config-bisect |