#1# Config file for ktest.pl2#3# Note, all paths must be absolute4#56# Options set in the beginning of the file are considered to be7# default options. These options can be overriden by test specific8# options, with the following exceptions:9#10# LOG_FILE11# CLEAR_LOG12# POWEROFF_ON_SUCCESS13# REBOOT_ON_SUCCESS14#15# Test specific options are set after the label:16#17# TEST_START18#19# The options after a TEST_START label are specific to that test.20# Each TEST_START label will set up a new test. If you want to21# perform a test more than once, you can add the ITERATE label22# to it followed by the number of times you want that test23# to iterate. If the ITERATE is left off, the test will only24# be performed once.25#26# TEST_START ITERATE 1027#28# You can skip a test by adding SKIP (before or after the ITERATE29# and number)30#31# TEST_START SKIP32#33# TEST_START SKIP ITERATE 1034#35# TEST_START ITERATE 10 SKIP36#37# The SKIP label causes the options and the test itself to be ignored.38# This is useful to set up several different tests in one config file, and39# only enabling the ones you want to use for a current test run.40#41# You can add default options anywhere in the file as well42# with the DEFAULTS tag. This allows you to have default options43# after the test options to keep the test options at the top44# of the file. You can even place the DEFAULTS tag between45# test cases (but not in the middle of a single test case)46#47# TEST_START48# MIN_CONFIG = /home/test/config-test149#50# DEFAULTS51# MIN_CONFIG = /home/test/config-default52#53# TEST_START ITERATE 1054#55# The above will run the first test with MIN_CONFIG set to56# /home/test/config-test-1. Then 10 tests will be executed57# with MIN_CONFIG with /home/test/config-default.58#59# You can also disable defaults with the SKIP option60#61# DEFAULTS SKIP62# MIN_CONFIG = /home/test/config-use-sometimes63#64# DEFAULTS65# MIN_CONFIG = /home/test/config-most-times66#67# The above will ignore the first MIN_CONFIG. If you want to68# use the first MIN_CONFIG, remove the SKIP from the first69# DEFAULTS tag and add it to the second. Be careful, options70# may only be declared once per test or default. If you have71# the same option name under the same test or as default72# ktest will fail to execute, and no tests will run.73#7475#### Config variables ####76#77# This config file can also contain "config variables".78# These are assigned with ":=" instead of the ktest option79# assigment "=".80#81# The difference between ktest options and config variables82# is that config variables can be used multiple times,83# where each instance will override the previous instance.84# And that they only live at time of processing this config.85#86# The advantage to config variables are that they can be used87# by any option or any other config variables to define thing88# that you may use over and over again in the options.89#90# For example:91#92# USER := root93# TARGET := mybox94# TEST_CASE := ssh ${USER}@${TARGET} /path/to/my/test95#96# TEST_START97# MIN_CONFIG = config198# TEST = ${TEST_CASE}99#100# TEST_START101# MIN_CONFIG = config2102# TEST = ${TEST_CASE}103#104# TEST_CASE := ssh ${USER}@${TARGET} /path/to/my/test2105#106# TEST_START107# MIN_CONFIG = config1108# TEST = ${TEST_CASE}109#110# TEST_START111# MIN_CONFIG = config2112# TEST = ${TEST_CASE}113#114# TEST_DIR := /home/me/test115#116# BUILD_DIR = ${TEST_DIR}/linux.git117# OUTPUT_DIR = ${TEST_DIR}/test118#119# Note, the config variables are evaluated immediately, thus120# updating TARGET after TEST_CASE has been assigned does nothing121# to TEST_CASE.122#123# As shown in the example, to evaluate a config variable, you124# use the ${X} convention. Simple $X will not work.125#126# If the config variable does not exist, the ${X} will not127# be evaluated. Thus:128#129# MAKE_CMD = PATH=/mypath:${PATH} make130#131# If PATH is not a config variable, then the ${PATH} in132# the MAKE_CMD option will be evaluated by the shell when133# the MAKE_CMD option is passed into shell processing.134135#### Using options in other options ####136#137# Options that are defined in the config file may also be used138# by other options. All options are evaulated at time of139# use (except that config variables are evaluated at config140# processing time).141#142# If an ktest option is used within another option, instead of143# typing it again in that option you can simply use the option144# just like you can config variables.145#146# MACHINE = mybox147#148# TEST = ssh root@${MACHINE} /path/to/test149#150# The option will be used per test case. Thus:151#152# TEST_TYPE = test153# TEST = ssh root@{MACHINE}154#155# TEST_START156# MACHINE = box1157#158# TEST_START159# MACHINE = box2160#161# For both test cases, MACHINE will be evaluated at the time162# of the test case. The first test will run ssh root@box1163# and the second will run ssh root@box2.164165#### Mandatory Default Options ####166167# These options must be in the default section, although most168# may be overridden by test options.169170# The machine hostname that you will test171#MACHINE = target172173# The box is expected to have ssh on normal bootup, provide the user174# (most likely root, since you need privileged operations)175#SSH_USER = root176177# The directory that contains the Linux source code178#BUILD_DIR = /home/test/linux.git179180# The directory that the objects will be built181# (can not be same as BUILD_DIR)182#OUTPUT_DIR = /home/test/build/target183184# The location of the compiled file to copy to the target185# (relative to OUTPUT_DIR)186#BUILD_TARGET = arch/x86/boot/bzImage187188# The place to put your image on the test machine189#TARGET_IMAGE = /boot/vmlinuz-test190191# A script or command to reboot the box192#193# Here is a digital loggers power switch example194#POWER_CYCLE = wget --no-proxy -O /dev/null -q --auth-no-challenge 'http://admin:admin@power/outlet?5=CCL'195#196# Here is an example to reboot a virtual box on the current host197# with the name "Guest".198#POWER_CYCLE = virsh destroy Guest; sleep 5; virsh start Guest199200# The script or command that reads the console201#202# If you use ttywatch server, something like the following would work.203#CONSOLE = nc -d localhost 3001204#205# For a virtual machine with guest name "Guest".206#CONSOLE = virsh console Guest207208# Required version ending to differentiate the test209# from other linux builds on the system.210#LOCALVERSION = -test211212# The grub title name for the test kernel to boot213# (Only mandatory if REBOOT_TYPE = grub)214#215# Note, ktest.pl will not update the grub menu.lst, you need to216# manually add an option for the test. ktest.pl will search217# the grub menu.lst for this option to find what kernel to218# reboot into.219#220# For example, if in the /boot/grub/menu.lst the test kernel title has:221# title Test Kernel222# kernel vmlinuz-test223#GRUB_MENU = Test Kernel224225# A script to reboot the target into the test kernel226# (Only mandatory if REBOOT_TYPE = script)227#REBOOT_SCRIPT =228229#### Optional Config Options (all have defaults) ####230231# Start a test setup. If you leave this off, all options232# will be default and the test will run once.233# This is a label and not really an option (it takes no value).234# You can append ITERATE and a number after it to iterate the235# test a number of times, or SKIP to ignore this test.236#237#TEST_START238#TEST_START ITERATE 5239#TEST_START SKIP240241# Have the following options as default again. Used after tests242# have already been defined by TEST_START. Optionally, you can243# just define all default options before the first TEST_START244# and you do not need this option.245#246# This is a label and not really an option (it takes no value).247# You can append SKIP to this label and the options within this248# section will be ignored.249#250# DEFAULTS251# DEFAULTS SKIP252253# The default test type (default test)254# The test types may be:255# build - only build the kernel, do nothing else256# boot - build and boot the kernel257# test - build, boot and if TEST is set, run the test script258# (If TEST is not set, it defaults back to boot)259# bisect - Perform a bisect on the kernel (see BISECT_TYPE below)260# patchcheck - Do a test on a series of commits in git (see PATCHCHECK below)261#TEST_TYPE = test262263# Test to run if there is a successful boot and TEST_TYPE is test.264# Must exit with 0 on success and non zero on error265# default (undefined)266#TEST = ssh user@machine /root/run_test267268# The build type is any make config type or special command269# (default randconfig)270# nobuild - skip the clean and build step271# useconfig:/path/to/config - use the given config and run272# oldconfig on it.273# This option is ignored if TEST_TYPE is patchcheck or bisect274#BUILD_TYPE = randconfig275276# The make command (default make)277# If you are building a 32bit x86 on a 64 bit host278#MAKE_CMD = CC=i386-gcc AS=i386-as make ARCH=i386279280# Any build options for the make of the kernel (not for other makes, like configs)281# (default "")282#BUILD_OPTIONS = -j20283284# If you need an initrd, you can add a script or code here to install285# it. The environment variable KERNEL_VERSION will be set to the286# kernel version that is used. Remember to add the initrd line287# to your grub menu.lst file.288#289# Here's a couple of examples to use:290#POST_INSTALL = ssh user@target /sbin/mkinitrd --allow-missing -f /boot/initramfs-test.img $KERNEL_VERSION291#292# or on some systems:293#POST_INSTALL = ssh user@target /sbin/dracut -f /boot/initramfs-test.img $KERNEL_VERSION294295# Way to reboot the box to the test kernel.296# Only valid options so far are "grub" and "script"297# (default grub)298# If you specify grub, it will assume grub version 1299# and will search in /boot/grub/menu.lst for the title $GRUB_MENU300# and select that target to reboot to the kernel. If this is not301# your setup, then specify "script" and have a command or script302# specified in REBOOT_SCRIPT to boot to the target.303#304# The entry in /boot/grub/menu.lst must be entered in manually.305# The test will not modify that file.306#REBOOT_TYPE = grub307308# The min config that is needed to build for the machine309# A nice way to create this is with the following:310#311# $ ssh target312# $ lsmod > mymods313# $ scp mymods host:/tmp314# $ exit315# $ cd linux.git316# $ rm .config317# $ make LSMOD=mymods localyesconfig318# $ grep '^CONFIG' .config > /home/test/config-min319#320# If you want even less configs:321#322# log in directly to target (do not ssh)323#324# $ su325# # lsmod | cut -d' ' -f1 | xargs rmmod326#327# repeat the above several times328#329# # lsmod > mymods330# # reboot331#332# May need to reboot to get your network back to copy the mymods333# to the host, and then remove the previous .config and run the334# localyesconfig again. The CONFIG_MIN generated like this will335# not guarantee network activity to the box so the TEST_TYPE of336# test may fail.337#338# You might also want to set:339# CONFIG_CMDLINE="<your options here>"340# randconfig may set the above and override your real command341# line options.342# (default undefined)343#MIN_CONFIG = /home/test/config-min344345# Sometimes there's options that just break the boot and346# you do not care about. Here are a few:347# # CONFIG_STAGING is not set348# Staging drivers are horrible, and can break the build.349# # CONFIG_SCSI_DEBUG is not set350# SCSI_DEBUG may change your root partition351# # CONFIG_KGDB_SERIAL_CONSOLE is not set352# KGDB may cause oops waiting for a connection that's not there.353# This option points to the file containing config options that will be prepended354# to the MIN_CONFIG (or be the MIN_CONFIG if it is not set)355#356# Note, config options in MIN_CONFIG will override these options.357#358# (default undefined)359#ADD_CONFIG = /home/test/config-broken360361# The location on the host where to write temp files362# (default /tmp/ktest)363#TMP_DIR = /tmp/ktest364365# Optional log file to write the status (recommended)366# Note, this is a DEFAULT section only option.367# (default undefined)368#LOG_FILE = /home/test/logfiles/target.log369370# Remove old logfile if it exists before starting all tests.371# Note, this is a DEFAULT section only option.372# (default 0)373#CLEAR_LOG = 0374375# Line to define a successful boot up in console output.376# This is what the line contains, not the entire line. If you need377# the entire line to match, then use regural expression syntax like:378# (do not add any quotes around it)379#380# SUCCESS_LINE = ^MyBox Login:$381#382# (default "login:")383#SUCCESS_LINE = login:384385# In case the console constantly fills the screen, having386# a specified time to stop the test after success is recommended.387# (in seconds)388# (default 10)389#STOP_AFTER_SUCCESS = 10390391# In case the console constantly fills the screen, having392# a specified time to stop the test after failure is recommended.393# (in seconds)394# (default 60)395#STOP_AFTER_FAILURE = 60396397# In case the console constantly fills the screen, having398# a specified time to stop the test if it never succeeds nor fails399# is recommended.400# Note: this is ignored if a success or failure is detected.401# (in seconds)402# (default 600, -1 is to never stop)403#STOP_TEST_AFTER = 600404405# Stop testing if a build fails. If set, the script will end if406# a failure is detected, otherwise it will save off the .config,407# dmesg and bootlog in a directory called408# MACHINE-TEST_TYPE_BUILD_TYPE-fail-yyyymmddhhmmss409# if the STORE_FAILURES directory is set.410# (default 1)411# Note, even if this is set to zero, there are some errors that still412# stop the tests.413#DIE_ON_FAILURE = 1414415# Directory to store failure directories on failure. If this is not416# set, DIE_ON_FAILURE=0 will not save off the .config, dmesg and417# bootlog. This option is ignored if DIE_ON_FAILURE is not set.418# (default undefined)419#STORE_FAILURES = /home/test/failures420421# Build without doing a make mrproper, or removing .config422# (default 0)423#BUILD_NOCLEAN = 0424425# As the test reads the console, after it hits the SUCCESS_LINE426# the time it waits for the monitor to settle down between reads427# can usually be lowered.428# (in seconds) (default 1)429#BOOTED_TIMEOUT = 1430431# The timeout in seconds when we consider the box hung after432# the console stop producing output. Be sure to leave enough433# time here to get pass a reboot. Some machines may not produce434# any console output for a long time during a reboot. You do435# not want the test to fail just because the system was in436# the process of rebooting to the test kernel.437# (default 120)438#TIMEOUT = 120439440# In between tests, a reboot of the box may occur, and this441# is the time to wait for the console after it stops producing442# output. Some machines may not produce a large lag on reboot443# so this should accommodate it.444# The difference between this and TIMEOUT, is that TIMEOUT happens445# when rebooting to the test kernel. This sleep time happens446# after a test has completed and we are about to start running447# another test. If a reboot to the reliable kernel happens,448# we wait SLEEP_TIME for the console to stop producing output449# before starting the next test.450# (default 60)451#SLEEP_TIME = 60452453# The time in between bisects to sleep (in seconds)454# (default 60)455#BISECT_SLEEP_TIME = 60456457# The time in between patch checks to sleep (in seconds)458# (default 60)459#PATCHCHECK_SLEEP_TIME = 60460461# Reboot the target box on error (default 0)462#REBOOT_ON_ERROR = 0463464# Power off the target on error (ignored if REBOOT_ON_ERROR is set)465# Note, this is a DEFAULT section only option.466# (default 0)467#POWEROFF_ON_ERROR = 0468469# Power off the target after all tests have completed successfully470# Note, this is a DEFAULT section only option.471# (default 0)472#POWEROFF_ON_SUCCESS = 0473474# Reboot the target after all test completed successfully (default 1)475# (ignored if POWEROFF_ON_SUCCESS is set)476#REBOOT_ON_SUCCESS = 1477478# In case there are isses with rebooting, you can specify this479# to always powercycle after this amount of time after calling480# reboot.481# Note, POWERCYCLE_AFTER_REBOOT = 0 does NOT disable it. It just482# makes it powercycle immediately after rebooting. Do not define483# it if you do not want it.484# (default undefined)485#POWERCYCLE_AFTER_REBOOT = 5486487# In case there's isses with halting, you can specify this488# to always poweroff after this amount of time after calling489# halt.490# Note, POWEROFF_AFTER_HALT = 0 does NOT disable it. It just491# makes it poweroff immediately after halting. Do not define492# it if you do not want it.493# (default undefined)494#POWEROFF_AFTER_HALT = 20495496# A script or command to power off the box (default undefined)497# Needed for POWEROFF_ON_ERROR and SUCCESS498#499# Example for digital loggers power switch:500#POWER_OFF = wget --no-proxy -O /dev/null -q --auth-no-challenge 'http://admin:admin@power/outlet?5=OFF'501#502# Example for a virtual guest call "Guest".503#POWER_OFF = virsh destroy Guest504505# The way to execute a command on the target506# (default ssh $SSH_USER@$MACHINE $SSH_COMMAND";)507# The variables SSH_USER, MACHINE and SSH_COMMAND are defined508#SSH_EXEC = ssh $SSH_USER@$MACHINE $SSH_COMMAND";509510# The way to copy a file to the target511# (default scp $SRC_FILE $SSH_USER@$MACHINE:$DST_FILE)512# The variables SSH_USER, MACHINE, SRC_FILE and DST_FILE are defined.513#SCP_TO_TARGET = scp $SRC_FILE $SSH_USER@$MACHINE:$DST_FILE514515# The nice way to reboot the target516# (default ssh $SSH_USER@$MACHINE reboot)517# The variables SSH_USER and MACHINE are defined.518#REBOOT = ssh $SSH_USER@$MACHINE reboot519520#### Per test run options ####521# The following options are only allowed in TEST_START sections.522# They are ignored in the DEFAULTS sections.523#524# All of these are optional and undefined by default, although525# some of these options are required for TEST_TYPE of patchcheck526# and bisect.527#528#529# CHECKOUT = branch530#531# If the BUILD_DIR is a git repository, then you can set this option532# to checkout the given branch before running the TEST. If you533# specify this for the first run, that branch will be used for534# all preceding tests until a new CHECKOUT is set.535#536#537#538# For TEST_TYPE = patchcheck539#540# This expects the BUILD_DIR to be a git repository, and541# will checkout the PATCHCHECK_START commit.542#543# The option BUILD_TYPE will be ignored.544#545# The MIN_CONFIG will be used for all builds of the patchcheck. The build type546# used for patchcheck is oldconfig.547#548# PATCHCHECK_START is required and is the first patch to549# test (the SHA1 of the commit). You may also specify anything550# that git checkout allows (branch name, tage, HEAD~3).551#552# PATCHCHECK_END is the last patch to check (default HEAD)553#554# PATCHCHECK_TYPE is required and is the type of test to run:555# build, boot, test.556#557# Note, the build test will look for warnings, if a warning occurred558# in a file that a commit touches, the build will fail.559#560# If BUILD_NOCLEAN is set, then make mrproper will not be run on561# any of the builds, just like all other TEST_TYPE tests. But562# what makes patchcheck different from the other tests, is if563# BUILD_NOCLEAN is not set, only the first and last patch run564# make mrproper. This helps speed up the test.565#566# Example:567# TEST_START568# TEST_TYPE = patchcheck569# CHECKOUT = mybranch570# PATCHCHECK_TYPE = boot571# PATCHCHECK_START = 747e94ae3d1b4c9bf5380e569f614eb9040b79e7572# PATCHCHECK_END = HEAD~2573#574#575#576# For TEST_TYPE = bisect577#578# You can specify a git bisect if the BUILD_DIR is a git repository.579# The MIN_CONFIG will be used for all builds of the bisect. The build type580# used for bisecting is oldconfig.581#582# The option BUILD_TYPE will be ignored.583#584# BISECT_TYPE is the type of test to perform:585# build - bad fails to build586# boot - bad builds but fails to boot587# test - bad boots but fails a test588#589# BISECT_GOOD is the commit (SHA1) to label as good (accepts all git good commit types)590# BISECT_BAD is the commit to label as bad (accepts all git bad commit types)591#592# The above three options are required for a bisect operation.593#594# BISECT_REPLAY = /path/to/replay/file (optional, default undefined)595#596# If an operation failed in the bisect that was not expected to597# fail. Then the test ends. The state of the BUILD_DIR will be598# left off at where the failure occurred. You can examine the599# reason for the failure, and perhaps even find a git commit600# that would work to continue with. You can run:601#602# git bisect log > /path/to/replay/file603#604# The adding:605#606# BISECT_REPLAY= /path/to/replay/file607#608# And running the test again. The test will perform the initial609# git bisect start, git bisect good, and git bisect bad, and610# then it will run git bisect replay on this file, before611# continuing with the bisect.612#613# BISECT_START = commit (optional, default undefined)614#615# As with BISECT_REPLAY, if the test failed on a commit that616# just happen to have a bad commit in the middle of the bisect,617# and you need to skip it. If BISECT_START is defined, it618# will checkout that commit after doing the initial git bisect start,619# git bisect good, git bisect bad, and running the git bisect replay620# if the BISECT_REPLAY is set.621#622# BISECT_SKIP = 1 (optional, default 0)623#624# If BISECT_TYPE is set to test but the build fails, ktest will625# simply fail the test and end their. You could use BISECT_REPLAY626# and BISECT_START to resume after you found a new starting point,627# or you could set BISECT_SKIP to 1. If BISECT_SKIP is set to 1,628# when something other than the BISECT_TYPE fails, ktest.pl will629# run "git bisect skip" and try again.630#631# BISECT_FILES = <path> (optional, default undefined)632#633# To just run the git bisect on a specific path, set BISECT_FILES.634# For example:635#636# BISECT_FILES = arch/x86 kernel/time637#638# Will run the bisect with "git bisect start -- arch/x86 kernel/time"639#640# BISECT_REVERSE = 1 (optional, default 0)641#642# In those strange instances where it was broken forever643# and you are trying to find where it started to work!644# Set BISECT_GOOD to the commit that was last known to fail645# Set BISECT_BAD to the commit that is known to start working.646# With BISECT_REVERSE = 1, The test will consider failures as647# good, and success as bad.648#649# BISECT_MANUAL = 1 (optional, default 0)650#651# In case there's a problem with automating the bisect for652# whatever reason. (Can't reboot, want to inspect each iteration)653# Doing a BISECT_MANUAL will have the test wait for you to654# tell it if the test passed or failed after each iteration.655# This is basicall the same as running git bisect yourself656# but ktest will rebuild and install the kernel for you.657#658# BISECT_CHECK = 1 (optional, default 0)659#660# Just to be sure the good is good and bad is bad, setting661# BISECT_CHECK to 1 will start the bisect by first checking662# out BISECT_BAD and makes sure it fails, then it will check663# out BISECT_GOOD and makes sure it succeeds before starting664# the bisect (it works for BISECT_REVERSE too).665#666# You can limit the test to just check BISECT_GOOD or667# BISECT_BAD with BISECT_CHECK = good or668# BISECT_CHECK = bad, respectively.669#670# Example:671# TEST_START672# TEST_TYPE = bisect673# BISECT_GOOD = v2.6.36674# BISECT_BAD = b5153163ed580e00c67bdfecb02b2e3843817b3e675# BISECT_TYPE = build676# MIN_CONFIG = /home/test/config-bisect677#678#679#680# For TEST_TYPE = config_bisect681#682# In those cases that you have two different configs. One of them683# work, the other does not, and you do not know what config causes684# the problem.685# The TEST_TYPE config_bisect will bisect the bad config looking for686# what config causes the failure.687#688# The way it works is this:689#690# First it finds a config to work with. Since a different version, or691# MIN_CONFIG may cause different dependecies, it must run through this692# preparation.693#694# Overwrites any config set in the bad config with a config set in695# either the MIN_CONFIG or ADD_CONFIG. Thus, make sure these configs696# are minimal and do not disable configs you want to test:697# (ie. # CONFIG_FOO is not set).698#699# An oldconfig is run on the bad config and any new config that700# appears will be added to the configs to test.701#702# Finally, it generates a config with the above result and runs it703# again through make oldconfig to produce a config that should be704# satisfied by kconfig.705#706# Then it starts the bisect.707#708# The configs to test are cut in half. If all the configs in this709# half depend on a config in the other half, then the other half710# is tested instead. If no configs are enabled by either half, then711# this means a circular dependency exists and the test fails.712#713# A config is created with the test half, and the bisect test is run.714#715# If the bisect succeeds, then all configs in the generated config716# are removed from the configs to test and added to the configs that717# will be enabled for all builds (they will be enabled, but not be part718# of the configs to examine).719#720# If the bisect fails, then all test configs that were not enabled by721# the config file are removed from the test. These configs will not722# be enabled in future tests. Since current config failed, we consider723# this to be a subset of the config that we started with.724#725# When we are down to one config, it is considered the bad config.726#727# Note, the config chosen may not be the true bad config. Due to728# dependencies and selections of the kbuild system, mulitple729# configs may be needed to cause a failure. If you disable the730# config that was found and restart the test, if the test fails731# again, it is recommended to rerun the config_bisect with a new732# bad config without the found config enabled.733#734# The option BUILD_TYPE will be ignored.735#736# CONFIG_BISECT_TYPE is the type of test to perform:737# build - bad fails to build738# boot - bad builds but fails to boot739# test - bad boots but fails a test740#741# CONFIG_BISECT is the config that failed to boot742#743# If BISECT_MANUAL is set, it will pause between iterations.744# This is useful to use just ktest.pl just for the config bisect.745# If you set it to build, it will run the bisect and you can746# control what happens in between iterations. It will ask you if747# the test succeeded or not and continue the config bisect.748#749# Example:750# TEST_START751# TEST_TYPE = config_bisect752# CONFIG_BISECT_TYPE = build753# CONFIG_BISECT = /home/test/�onfig-bad754# MIN_CONFIG = /home/test/config-min755# BISECT_MANUAL = 1756#757758759