~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/testing/ktest/examples/test.conf

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 #
  2 # Generic config for a machine
  3 #
  4 
  5 # Name your machine (the DNS name, what you ssh to)
  6 MACHINE = foo
  7 
  8 # BOX can be different than foo, if the machine BOX has
  9 # multiple partitions with different systems installed. For example,
 10 # you may have a i386 and x86_64 installation on a test box.
 11 # If this is the case, MACHINE defines the way to connect to the
 12 # machine, which may be different between which system the machine
 13 # is booting into. BOX is used for the scripts to reboot and power cycle
 14 # the machine, where it does not matter which system the machine boots into.
 15 #
 16 #BOX := bar
 17 
 18 # Define a way to read the console
 19 CONSOLE = stty -F /dev/ttyS0 115200 parodd; cat /dev/ttyS0
 20 
 21 # The include files will set up the type of test to run. Just set TEST to
 22 # which test you want to run.
 23 #
 24 # TESTS = patchcheck, randconfig, boot, test, config-bisect, bisect, min-config
 25 #
 26 # See the include/*.conf files that define these tests
 27 #
 28 TEST := patchcheck
 29 
 30 # Some tests may have more than one test to run. Define MULTI := 1 to run
 31 # the extra tests.
 32 MULTI := 0
 33 
 34 # In case you want to differentiate which type of system you are testing
 35 BITS := 64
 36 
 37 # REBOOT = none, error, fail, empty
 38 #  See include/defaults.conf
 39 REBOOT := empty
 40 
 41 # The defaults file will set up various settings that can be used by all
 42 # machine configs.
 43 INCLUDE include/defaults.conf
 44 
 45 # In case you need to add a patch for a bisect or something
 46 #PRE_BUILD = patch -p1 < ${THIS_DIR}/fix.patch
 47 
 48 # Reset the repo after the build and remove all 'test' modules from the target
 49 # Notice that DO_POST_BUILD is a variable (defined by ':=') and POST_BUILD
 50 # is the option (defined by '=')
 51 
 52 DO_POST_BUILD := git reset --hard
 53 POST_BUILD = ${SSH} 'rm -rf /lib/modules/*-test*'; ${DO_POST_BUILD}
 54 
 55 # The following files each handle a different test case.
 56 # Having them included allows you to set up more than one machine and share
 57 # the same tests.
 58 INCLUDE include/patchcheck.conf
 59 INCLUDE include/tests.conf
 60 INCLUDE include/bisect.conf
 61 INCLUDE include/min-config.conf
 62 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php