Home | History | Annotate | Line # | Download | only in testsuite
README revision 1.5
      1  1.1  christos This is a collection of tests for GDB.
      2  1.1  christos 
      3  1.1  christos The file gdb/README contains basic instructions on how to run the
      4  1.1  christos testsuite, while this file documents additional options and controls
      5  1.1  christos that are available.  The GDB wiki may also have some pages with ideas
      6  1.1  christos and suggestions.
      7  1.1  christos 
      8  1.1  christos 
      9  1.1  christos Running the Testsuite
     10  1.1  christos *********************
     11  1.1  christos 
     12  1.1  christos There are two ways to run the testsuite and pass additional parameters
     13  1.1  christos to DejaGnu.  The first is to do `make check' in the main build
     14  1.1  christos directory and specifying the makefile variable `RUNTESTFLAGS':
     15  1.1  christos 
     16  1.1  christos 	 make check RUNTESTFLAGS='TRANSCRIPT=y gdb.base/a2-run.exp'
     17  1.1  christos 
     18  1.1  christos The second is to cd to the testsuite directory and invoke the DejaGnu
     19  1.1  christos `runtest' command directly.
     20  1.1  christos 
     21  1.1  christos 	cd testsuite
     22  1.1  christos 	make site.exp
     23  1.1  christos 	runtest TRANSCRIPT=y
     24  1.1  christos 
     25  1.1  christos (The `site.exp' file contains a handful of useful variables like host
     26  1.1  christos and target triplets, and pathnames.)
     27  1.1  christos 
     28  1.1  christos Running the Performance Tests
     29  1.1  christos *****************************
     30  1.1  christos 
     31  1.1  christos GDB Testsuite includes performance test cases, which are not run together
     32  1.1  christos with other test cases, because performance test cases are slow and need
     33  1.1  christos a quiet system.  There are two ways to run the performance test cases.
     34  1.1  christos The first is to do `make check-perf' in the main build directory:
     35  1.1  christos 
     36  1.1  christos 	make check-perf RUNTESTFLAGS="solib.exp SOLIB_COUNT=8"
     37  1.1  christos 
     38  1.1  christos The second is to cd to the testsuite directory and invoke the DejaGnu
     39  1.1  christos `runtest' command directly.
     40  1.1  christos 
     41  1.1  christos 	cd testsuite
     42  1.1  christos 	make site.exp
     43  1.1  christos 	runtest GDB_PERFTEST_MODE=both GDB_PERFTEST_TIMEOUT=4000 --directory=gdb.perf solib.exp SOLIB_COUNT=8
     44  1.1  christos 
     45  1.1  christos Only "compile", "run" and "both" are valid to GDB_PERFTEST_MODE.  They
     46  1.1  christos stand for "compile tests only", "run tests only", and "compile and run
     47  1.1  christos tests" respectively.  "both" is the default.  GDB_PERFTEST_TIMEOUT
     48  1.1  christos specify the timeout, which is 3000 in default.  The result of
     49  1.1  christos performance test is appended in `testsuite/perftest.log'.
     50  1.1  christos 
     51  1.1  christos Testsuite Parameters
     52  1.1  christos ********************
     53  1.1  christos 
     54  1.1  christos The following parameters are DejaGNU variables that you can set to
     55  1.1  christos affect the testsuite run globally.
     56  1.1  christos 
     57  1.1  christos TRANSCRIPT
     58  1.1  christos 
     59  1.1  christos You may find it useful to have a transcript of the commands that the
     60  1.1  christos testsuite sends to GDB, for instance if GDB crashes during the run,
     61  1.1  christos and you want to reconstruct the sequence of commands.
     62  1.1  christos 
     63  1.1  christos If the DejaGNU variable TRANSCRIPT is set (to any value), each
     64  1.1  christos invocation of GDB during the test run will get a transcript file
     65  1.1  christos written into the DejaGNU output directory.  The file will have the
     66  1.1  christos name transcript.<n>, where <n> is an integer.  The first line of the
     67  1.1  christos file shows the invocation command with all the options passed to it,
     68  1.1  christos while subsequent lines are the GDB commands.  A `make check' might
     69  1.1  christos look like this:
     70  1.1  christos 
     71  1.1  christos       make check RUNTESTFLAGS=TRANSCRIPT=y
     72  1.1  christos 
     73  1.1  christos The transcript may not be complete, as for instance tests of command
     74  1.1  christos completion may show only partial command lines.
     75  1.1  christos 
     76  1.1  christos GDB
     77  1.1  christos 
     78  1.1  christos By default, the testsuite exercises the GDB in the build directory,
     79  1.1  christos but you can set GDB to be a pathname to a different version.  For
     80  1.1  christos instance,
     81  1.1  christos 
     82  1.1  christos     make check RUNTESTFLAGS=GDB=/usr/bin/gdb
     83  1.1  christos 
     84  1.1  christos runs the testsuite on the GDB in /usr/bin.
     85  1.1  christos 
     86  1.1  christos GDBSERVER
     87  1.1  christos 
     88  1.1  christos You can set GDBSERVER to be a particular GDBserver of interest, so for
     89  1.1  christos instance
     90  1.1  christos 
     91  1.1  christos     make check RUNTESTFLAGS="GDB=/usr/bin/gdb GDBSERVER=/usr/bin/gdbserver"
     92  1.1  christos 
     93  1.1  christos checks both the installed GDB and GDBserver.
     94  1.1  christos 
     95  1.1  christos INTERNAL_GDBFLAGS
     96  1.1  christos 
     97  1.1  christos Command line options passed to all GDB invocations.
     98  1.1  christos 
     99  1.1  christos The default is "-nw -nx".
    100  1.1  christos 
    101  1.1  christos `-nw' disables any of the windowed interfaces.
    102  1.1  christos `-nx' disables ~/.gdbinit, so that it doesn't interfere with
    103  1.1  christos the tests.
    104  1.1  christos 
    105  1.1  christos This is actually considered an internal variable, and you
    106  1.1  christos won't normally want to change it.  However, in some situations,
    107  1.1  christos this may be tweaked as a last resort if the testsuite doesn't
    108  1.1  christos have direct support for the specifics of your environment.
    109  1.1  christos The testsuite does not override a value provided by the user.
    110  1.1  christos 
    111  1.1  christos As an example, when testing an installed GDB that has been
    112  1.1  christos configured with `--with-system-gdbinit', like by default,
    113  1.1  christos you do not want ~/.gdbinit to interfere with tests, but, you
    114  1.1  christos may want the system .gdbinit file loaded.  As there's no way to
    115  1.1  christos ask the testsuite, or GDB, to load the system gdbinit but
    116  1.1  christos not ~/.gdbinit, a workaround is then to remove `-nx' from
    117  1.1  christos INTERNAL_GDBFLAGS, and point $HOME at a directory without
    118  1.1  christos a .gdbinit.  For example:
    119  1.1  christos 
    120  1.1  christos 	cd testsuite
    121  1.1  christos 	HOME=`pwd` runtest \
    122  1.1  christos 	  GDB=/usr/bin/gdb \
    123  1.1  christos 	  GDBSERVER=/usr/bin/gdbserver \
    124  1.1  christos 	  INTERNAL_GDBFLAGS=-nw
    125  1.1  christos 
    126  1.1  christos GDB_PARALLEL
    127  1.1  christos 
    128  1.1  christos When testing natively (that is, not with a remote host), you can run
    129  1.1  christos the GDB test suite in a fully parallel mode.  In this mode, each .exp
    130  1.1  christos file runs separately and maybe simultaneously.  The test suite will
    131  1.1  christos ensure that all the temporary files created by the test suite do not
    132  1.1  christos clash, by putting them into separate directories.  This mode is
    133  1.1  christos primarily intended for use by the Makefile.
    134  1.1  christos 
    135  1.1  christos To use this mode, set the GDB_PARALLEL on the runtest command line.
    136  1.1  christos Before starting the tests, you must ensure that the directories cache,
    137  1.1  christos outputs, and temp in the test suite build directory are either empty
    138  1.1  christos or have been deleted.  cache in particular is used to share data
    139  1.1  christos across invocations of runtest, and files there may affect the test
    140  1.1  christos results.  Note that the Makefile automatically does these deletions.
    141  1.1  christos 
    142  1.1  christos GDB_INOTIFY
    143  1.1  christos 
    144  1.1  christos For debugging parallel mode, it is handy to be able to see when a test
    145  1.1  christos case writes to a file outside of its designated output directory.
    146  1.1  christos 
    147  1.1  christos If you have the inotify-tools package installed, you can set the
    148  1.1  christos GDB_INOTIFY variable on the runtest command line.  This will cause the
    149  1.1  christos test suite to watch for parallel-unsafe file creations and report
    150  1.1  christos them, both to stdout and in the test suite log file.
    151  1.1  christos 
    152  1.1  christos This setting is only meaningful in conjunction with GDB_PARALLEL.
    153  1.1  christos 
    154  1.3  christos TESTS
    155  1.3  christos 
    156  1.3  christos This variable is used to specify which set of tests to run.
    157  1.3  christos It is passed to make (not runtest) and its contents are a space separated
    158  1.3  christos list of tests to run.
    159  1.3  christos 
    160  1.3  christos If using GNU make then the contents are wildcard-expanded using
    161  1.3  christos GNU make's $(wildcard) function.  Test paths must be fully specified,
    162  1.3  christos relative to the "testsuite" subdirectory.  This allows one to run all
    163  1.3  christos tests in a subdirectory by passing "gdb.subdir/*.exp", or more simply
    164  1.3  christos by using the check-gdb.subdir target in the Makefile.
    165  1.3  christos 
    166  1.3  christos If for some strange reason one wanted to run all tests that begin with
    167  1.3  christos the letter "d" that is also possible: TESTS="*/d*.exp".
    168  1.3  christos 
    169  1.3  christos Do not write */*.exp to specify all tests (assuming all tests are only
    170  1.3  christos nested one level deep, which is not necessarily true).  This will pick up
    171  1.3  christos .exp files in ancillary directories like "lib" and "config".
    172  1.3  christos Instead write gdb.*/*.exp.
    173  1.3  christos 
    174  1.3  christos Example:
    175  1.3  christos 
    176  1.3  christos 	make -j10 check TESTS="gdb.server/[s-w]*.exp */x*.exp"
    177  1.3  christos 
    178  1.3  christos If not using GNU make then the value is passed directly to runtest.
    179  1.3  christos If not specified, all tests are run.
    180  1.3  christos 
    181  1.3  christos READ1
    182  1.3  christos 
    183  1.3  christos This make (not runtest) variable is used to specify whether the
    184  1.3  christos testsuite preloads the read1.so library into expect.  Any non-empty
    185  1.3  christos value means true.  See "Race detection" below.
    186  1.3  christos 
    187  1.3  christos Race detection
    188  1.3  christos **************
    189  1.3  christos 
    190  1.3  christos The testsuite includes a mechanism that helps detect test races.
    191  1.3  christos 
    192  1.3  christos For example, say the program running under expect outputs "abcd", and
    193  1.3  christos a test does something like this:
    194  1.3  christos 
    195  1.3  christos   expect {
    196  1.3  christos     "a.*c" {
    197  1.3  christos     }
    198  1.3  christos     "b" {
    199  1.3  christos     }
    200  1.3  christos     "a" {
    201  1.3  christos     }
    202  1.3  christos   }
    203  1.3  christos 
    204  1.3  christos Which case happens to match depends on what expect manages to read
    205  1.3  christos into its internal buffer in one go.  If it manages to read three bytes
    206  1.3  christos or more, then the first case matches.  If it manages to read two
    207  1.3  christos bytes, then the second case matches.  If it manages to read only one
    208  1.3  christos byte, then the third case matches.
    209  1.3  christos 
    210  1.3  christos To help detect these cases, the race detection mechanism preloads a
    211  1.3  christos library into expect that forces the `read' system call to always
    212  1.3  christos return at most 1 byte.
    213  1.3  christos 
    214  1.3  christos To enable this, either pass a non-empty value in the READ1 make
    215  1.3  christos variable, or use the check-read1 make target instead of check.
    216  1.3  christos 
    217  1.3  christos Examples:
    218  1.3  christos 
    219  1.3  christos 	make -j10 check-read1 TESTS="*/paginate-*.exp"
    220  1.3  christos 	make -j10 check READ1="1"
    221  1.1  christos 
    222  1.1  christos Testsuite Configuration
    223  1.1  christos ***********************
    224  1.1  christos 
    225  1.1  christos It is possible to adjust the behavior of the testsuite by defining
    226  1.1  christos the global variables listed below, either in a `site.exp' file,
    227  1.1  christos or in a board file.
    228  1.1  christos 
    229  1.1  christos gdb_test_timeout
    230  1.1  christos 
    231  1.1  christos Defining this variable changes the default timeout duration used
    232  1.1  christos during communication with GDB.  More specifically, the global variable
    233  1.1  christos used during testing is `timeout', but this variable gets reset to
    234  1.1  christos `gdb_test_timeout' at the beginning of each testcase, which ensures
    235  1.1  christos that any local change to `timeout' in a testcase does not affect
    236  1.1  christos subsequent testcases.
    237  1.1  christos 
    238  1.1  christos This global variable comes in handy when the debugger is slower than
    239  1.1  christos normal due to the testing environment, triggering unexpected `TIMEOUT'
    240  1.1  christos test failures.  Examples include when testing on a remote machine, or
    241  1.1  christos against a system where communications are slow.
    242  1.1  christos 
    243  1.1  christos If not specifically defined, this variable gets automatically defined
    244  1.1  christos to the same value as `timeout' during the testsuite initialization.
    245  1.1  christos The default value of the timeout is defined in the file
    246  1.1  christos `testsuite/config/unix.exp' (at least for Unix hosts; board files may
    247  1.1  christos have their own values).
    248  1.1  christos 
    249  1.3  christos gdb_reverse_timeout
    250  1.3  christos 
    251  1.3  christos Defining this variable changes the default timeout duration when tests
    252  1.3  christos under gdb.reverse directory are running.  Process record and reverse
    253  1.3  christos debugging is so slow that its tests have unexpected `TIMEOUT' test
    254  1.3  christos failures.  This global variable is useful to bump up the value of
    255  1.3  christos `timeout' for gdb.reverse tests and doesn't cause any delay where
    256  1.3  christos actual failures happen in the rest of the testsuite.
    257  1.3  christos 
    258  1.1  christos 
    259  1.1  christos Board Settings
    260  1.1  christos **************
    261  1.1  christos 
    262  1.1  christos DejaGNU includes the concept of a "board file", which specifies
    263  1.1  christos testing details for a particular target (which are often bare circuit
    264  1.1  christos boards, thus the name).
    265  1.1  christos 
    266  1.1  christos In the GDB testsuite specifically, the board file may include a
    267  1.1  christos number of "board settings" that test cases may check before deciding
    268  1.1  christos whether to exercise a particular feature.  For instance, a board
    269  1.1  christos lacking any I/O devices, or perhaps simply having its I/O devices
    270  1.1  christos not wired up, should set `noinferiorio'.
    271  1.1  christos 
    272  1.1  christos Here are the supported board settings:
    273  1.1  christos 
    274  1.1  christos gdb,cannot_call_functions
    275  1.1  christos 
    276  1.1  christos   The board does not support inferior call, that is, invoking inferior
    277  1.1  christos   functions in GDB.
    278  1.1  christos 
    279  1.1  christos gdb,can_reverse
    280  1.1  christos 
    281  1.1  christos   The board supports reverse execution.
    282  1.1  christos 
    283  1.1  christos gdb,no_hardware_watchpoints
    284  1.1  christos 
    285  1.1  christos   The board does not support hardware watchpoints.
    286  1.1  christos 
    287  1.1  christos gdb,nofileio
    288  1.1  christos 
    289  1.1  christos   GDB is unable to intercept target file operations in remote and
    290  1.1  christos   perform them on the host.
    291  1.1  christos 
    292  1.1  christos gdb,noinferiorio
    293  1.1  christos 
    294  1.1  christos   The board is unable to provide I/O capability to the inferior.
    295  1.1  christos 
    296  1.1  christos gdb,noresults
    297  1.1  christos 
    298  1.1  christos   A program will not return an exit code or result code (or the value
    299  1.1  christos   of the result is undefined, and should not be looked at).
    300  1.1  christos 
    301  1.1  christos gdb,nosignals
    302  1.1  christos 
    303  1.1  christos   The board does not support signals.
    304  1.1  christos 
    305  1.1  christos gdb,skip_huge_test
    306  1.1  christos 
    307  1.1  christos   Skip time-consuming tests on the board with slow connection.
    308  1.1  christos 
    309  1.1  christos gdb,skip_float_tests
    310  1.1  christos 
    311  1.1  christos   Skip tests related to floating point.
    312  1.1  christos 
    313  1.1  christos gdb,use_precord
    314  1.1  christos 
    315  1.1  christos   The board supports process record.
    316  1.1  christos 
    317  1.3  christos gdb_init_command
    318  1.3  christos gdb_init_commands
    319  1.3  christos 
    320  1.3  christos   Commands to send to GDB every time a program is about to be run.  The
    321  1.3  christos   first of these settings defines a single command as a string.  The
    322  1.3  christos   second defines a TCL list of commands being a string each.  The commands
    323  1.3  christos   are sent one by one in a sequence, first from `gdb_init_command', if any,
    324  1.3  christos   followed by individual commands from `gdb_init_command', if any, in this
    325  1.3  christos   list's order.
    326  1.3  christos 
    327  1.1  christos gdb_server_prog
    328  1.1  christos 
    329  1.1  christos   The location of GDBserver.  If GDBserver somewhere other than its
    330  1.1  christos   default location is used in test, specify the location of GDBserver in
    331  1.1  christos   this variable.  The location is a file name for GDBserver, and may be
    332  1.1  christos   either absolute or relative to the testsuite subdirectory of the build
    333  1.1  christos   directory.
    334  1.1  christos 
    335  1.1  christos in_proc_agent
    336  1.1  christos 
    337  1.1  christos   The location of the in-process agent (used for fast tracepoints and
    338  1.1  christos   other special tests).  If the in-process agent of interest is anywhere
    339  1.1  christos   other than its default location, set this variable.  The location is a
    340  1.1  christos   filename, and may be either absolute or relative to the testsuite
    341  1.1  christos   subdirectory of the build directory.
    342  1.1  christos 
    343  1.1  christos noargs
    344  1.1  christos 
    345  1.1  christos   GDB does not support argument passing for inferior.
    346  1.1  christos 
    347  1.1  christos no_long_long
    348  1.1  christos 
    349  1.1  christos   The board does not support type long long.
    350  1.1  christos 
    351  1.1  christos use_cygmon
    352  1.1  christos 
    353  1.1  christos   The board is running the monitor Cygmon.
    354  1.1  christos 
    355  1.1  christos use_gdb_stub
    356  1.1  christos 
    357  1.1  christos   The tests are running with a GDB stub.
    358  1.1  christos 
    359  1.1  christos exit_is_reliable
    360  1.1  christos 
    361  1.1  christos   Set to true if GDB can assume that letting the program run to end
    362  1.1  christos   reliably results in program exits being reported as such, as opposed
    363  1.1  christos   to, e.g., the program ending in an infinite loop or the board
    364  1.1  christos   crashing/resetting.  If not set, this defaults to $use_gdb_stub.  In
    365  1.1  christos   other words, native targets are assumed reliable by default, and
    366  1.1  christos   remote stubs assumed unreliable.
    367  1.1  christos 
    368  1.1  christos gdb,predefined_tsv
    369  1.1  christos 
    370  1.1  christos   The predefined trace state variables the board has.
    371  1.1  christos 
    372  1.1  christos 
    373  1.1  christos Testsuite Organization
    374  1.1  christos **********************
    375  1.1  christos 
    376  1.1  christos The testsuite is entirely contained in `gdb/testsuite'.  The main
    377  1.1  christos directory of the testsuite includes some makefiles and configury, but
    378  1.1  christos these are minimal, and used for little besides cleaning up, since the
    379  1.1  christos tests themselves handle the compilation of the programs that GDB will
    380  1.1  christos run.
    381  1.1  christos 
    382  1.1  christos The file `testsuite/lib/gdb.exp' contains common utility procs useful
    383  1.1  christos for all GDB tests, while the directory testsuite/config contains
    384  1.1  christos configuration-specific files, typically used for special-purpose
    385  1.1  christos definitions of procs like `gdb_load' and `gdb_start'.
    386  1.1  christos 
    387  1.1  christos The tests themselves are to be found in directories named
    388  1.1  christos 'testsuite/gdb.* and subdirectories of those.  The names of the test
    389  1.1  christos files must always end with ".exp".  DejaGNU collects the test files by
    390  1.1  christos wildcarding in the test directories, so both subdirectories and
    391  1.1  christos individual files typically get chosen and run in alphabetical order.
    392  1.1  christos 
    393  1.1  christos The following lists some notable types of subdirectories and what they
    394  1.1  christos are for.  Since DejaGNU finds test files no matter where they are
    395  1.1  christos located, and since each test file sets up its own compilation and
    396  1.1  christos execution environment, this organization is simply for convenience and
    397  1.1  christos intelligibility.
    398  1.1  christos 
    399  1.1  christos gdb.base
    400  1.1  christos 
    401  1.1  christos This is the base testsuite.  The tests in it should apply to all
    402  1.1  christos configurations of GDB (but generic native-only tests may live here).
    403  1.1  christos The test programs should be in the subset of C that is both valid
    404  1.1  christos ANSI/ISO C, and C++.
    405  1.1  christos 
    406  1.1  christos gdb.<lang>
    407  1.1  christos 
    408  1.1  christos Language-specific tests for any language besides C.  Examples are
    409  1.1  christos gdb.cp for C++ and gdb.java for Java.
    410  1.1  christos 
    411  1.1  christos gdb.<platform>
    412  1.1  christos 
    413  1.1  christos Non-portable tests.  The tests are specific to a specific
    414  1.5  christos configuration (host or target), such as eCos.
    415  1.1  christos 
    416  1.1  christos gdb.arch
    417  1.1  christos 
    418  1.1  christos Architecture-specific tests that are (usually) cross-platform.
    419  1.1  christos 
    420  1.1  christos gdb.<subsystem>
    421  1.1  christos 
    422  1.1  christos Tests that exercise a specific GDB subsystem in more depth.  For
    423  1.1  christos instance, gdb.disasm exercises various disassemblers, while
    424  1.1  christos gdb.stabs tests pathways through the stabs symbol reader.
    425  1.1  christos 
    426  1.1  christos gdb.perf
    427  1.1  christos 
    428  1.1  christos GDB performance tests.
    429  1.1  christos 
    430  1.1  christos Writing Tests
    431  1.1  christos *************
    432  1.1  christos 
    433  1.1  christos In many areas, the GDB tests are already quite comprehensive; you
    434  1.1  christos should be able to copy existing tests to handle new cases.  Be aware
    435  1.1  christos that older tests may use obsolete practices but have not yet been
    436  1.1  christos updated.
    437  1.1  christos 
    438  1.1  christos You should try to use `gdb_test' whenever possible, since it includes
    439  1.1  christos cases to handle all the unexpected errors that might happen.  However,
    440  1.1  christos it doesn't cost anything to add new test procedures; for instance,
    441  1.1  christos gdb.base/exprs.exp defines a `test_expr' that calls `gdb_test'
    442  1.1  christos multiple times.
    443  1.1  christos 
    444  1.1  christos Only use `send_gdb' and `gdb_expect' when absolutely necessary.  Even
    445  1.1  christos if GDB has several valid responses to a command, you can use
    446  1.1  christos `gdb_test_multiple'.  Like `gdb_test', `gdb_test_multiple' recognizes
    447  1.1  christos internal errors and unexpected prompts.
    448  1.1  christos 
    449  1.1  christos Do not write tests which expect a literal tab character from GDB.  On
    450  1.1  christos some operating systems (e.g. OpenBSD) the TTY layer expands tabs to
    451  1.1  christos spaces, so by the time GDB's output reaches `expect' the tab is gone.
    452  1.1  christos 
    453  1.1  christos The source language programs do *not* need to be in a consistent
    454  1.1  christos style.  Since GDB is used to debug programs written in many different
    455  1.1  christos styles, it's worth having a mix of styles in the testsuite; for
    456  1.1  christos instance, some GDB bugs involving the display of source lines might
    457  1.1  christos never manifest themselves if the test programs used GNU coding style
    458  1.1  christos uniformly.
    459  1.1  christos 
    460  1.1  christos Some testcase results need more detailed explanation:
    461  1.1  christos 
    462  1.1  christos KFAIL
    463  1.1  christos 
    464  1.1  christos Use KFAIL for known problem of GDB itself.  You must specify the GDB
    465  1.1  christos bug report number, as in these sample tests:
    466  1.1  christos 
    467  1.1  christos 	kfail "gdb/13392" "continue to marker 2"
    468  1.1  christos 
    469  1.1  christos or
    470  1.1  christos 
    471  1.1  christos 	setup_kfail gdb/13392 "*-*-*"
    472  1.1  christos 	kfail "continue to marker 2"
    473  1.1  christos 
    474  1.1  christos 
    475  1.1  christos XFAIL
    476  1.1  christos 
    477  1.1  christos Short for "expected failure", this indicates a known problem with the
    478  1.1  christos environment.  This could include limitations of the operating system,
    479  1.1  christos compiler version, and other components.
    480  1.1  christos 
    481  1.1  christos This example from gdb.base/attach-pie-misread.exp is a sanity check
    482  1.1  christos for the target environment:
    483  1.1  christos 
    484  1.1  christos 	# On x86_64 it is commonly about 4MB.
    485  1.1  christos 	if {$stub_size > 25000000} {
    486  1.1  christos 	    xfail "stub size $stub_size is too large"
    487  1.1  christos 	    return
    488  1.1  christos 	}
    489  1.1  christos 
    490  1.1  christos You should provide bug report number for the failing component of the
    491  1.1  christos environment, if such bug report is available, as with this example
    492  1.1  christos referring to a GCC problem:
    493  1.1  christos 
    494  1.1  christos 	  if {[test_compiler_info {gcc-[0-3]-*}]
    495  1.1  christos 	      || [test_compiler_info {gcc-4-[0-5]-*}]} {
    496  1.1  christos 	      setup_xfail "gcc/46955" *-*-*
    497  1.1  christos 	  }
    498  1.1  christos 	  gdb_test "python print ttype.template_argument(2)" "&C::c"
    499  1.1  christos 
    500  1.1  christos Note that it is also acceptable, and often preferable, to avoid
    501  1.1  christos running the test at all.  This is the better option if the limitation
    502  1.1  christos is intrinsic to the environment, rather than a bug expected to be
    503  1.1  christos fixed in the near future.
    504