gdb/riscv: Improve flen length determination
[deliverable/binutils-gdb.git] / gdb / testsuite / README
CommitLineData
b866c52d
SS
1This is a collection of tests for GDB.
2
3The file gdb/README contains basic instructions on how to run the
4testsuite, while this file documents additional options and controls
5that are available. The GDB wiki may also have some pages with ideas
6and suggestions.
7
8
9Running the Testsuite
10*********************
11
12There are two ways to run the testsuite and pass additional parameters
13to DejaGnu. The first is to do `make check' in the main build
14directory and specifying the makefile variable `RUNTESTFLAGS':
15
87781e84 16 make check RUNTESTFLAGS='GDB=/usr/bin/gdb gdb.base/a2-run.exp'
b866c52d
SS
17
18The second is to cd to the testsuite directory and invoke the DejaGnu
19`runtest' command directly.
20
21 cd testsuite
22 make site.exp
87781e84 23 runtest GDB=/usr/bin/gdb
b866c52d
SS
24
25(The `site.exp' file contains a handful of useful variables like host
26and target triplets, and pathnames.)
27
e352bf0a
PA
28Parallel testing
29****************
30
31If not testing with a remote host (in DejaGnu's sense), you can run
32the GDB test suite in a fully parallel mode. In this mode, each .exp
33file runs separately and maybe simultaneously. The test suite ensures
34that all the temporary files created by the test suite do not clash,
35by putting them into separate directories. This mode is primarily
36intended for use by the Makefile.
37
38For GNU make, the Makefile tries to run the tests in parallel mode if
39any -j option is given. For a non-GNU make, tests are not
40parallelized.
41
42If RUNTESTFLAGS is not empty, then by default the tests are
43serialized. This can be overridden by either using the
44`check-parallel' target in the Makefile, or by setting FORCE_PARALLEL
45to any non-empty value:
46
acc23c11
PA
47 make check-parallel RUNTESTFLAGS="--target_board=native-gdbserver"
48 make check RUNTESTFLAGS="--target_board=native-gdbserver" FORCE_PARALLEL=1
e352bf0a
PA
49
50If you want to use runtest directly instead of using the Makefile, see
51the description of GDB_PARALLEL below.
52
fb6a751f
SDJ
53Racy testcases
54**************
55
56Sometimes, new testcases are added to the testsuite that are not
57entirely deterministic, and can randomly pass or fail. We call them
58"racy testcases", and they can be bothersome when one is comparing
59different testsuite runs. In order to help identifying them, it is
60possible to run the tests several times in a row and ask the testsuite
61machinery to analyze the results. To do that, you need to specify the
62RACY_ITER environment variable to make:
63
64 make check RACY_ITER=5 -j4
65
66The value assigned to RACY_ITER represents the number of times you
67wish to run the tests in sequence (in the example above, the entire
68testsuite will be executed 5 times in a row, in parallel). It is also
69possible to check just a specific test:
70
71 make check TESTS='gdb.base/default.exp' RACY_ITER=3
72
73One can also decide to call the Makefile rules by hand inside the
74gdb/testsuite directory, e.g.:
75
76 make check-paralell-racy -j4
77
78In which case the value of the DEFAULT_RACY_ITER variable (inside
79gdb/testsuite/Makefile.in) will be used to determine how many
80iterations will be run.
81
82After running the tests, you shall see a file name 'racy.sum' in the
83gdb/testsuite directory. You can also inspect the generated *.log and
84*.sum files by looking into the gdb/testsuite/racy_ouputs directory.
85
86If you already have *.sum files generated from previous testsuite runs
87and you would like to analyze them without having to run the testsuite
88again, you can also use the 'analyze-racy-logs.py' script directly.
89It is located in the gdb/testsuite/ directory, and it expects a list
90of two or more *.sum files to be provided as its argument. For
91example:
92
93 ./gdb/testsuite/analyze-racy-logs.py testsuite-01/gdb.sum \
94 testsuite-02/gdb.sum testsuite-03/gdb.sum
95
96The script will output its analysis report to the standard output.
97
71c0c615
YQ
98Running the Performance Tests
99*****************************
100
101GDB Testsuite includes performance test cases, which are not run together
102with other test cases, because performance test cases are slow and need
103a quiet system. There are two ways to run the performance test cases.
104The first is to do `make check-perf' in the main build directory:
105
106 make check-perf RUNTESTFLAGS="solib.exp SOLIB_COUNT=8"
107
108The second is to cd to the testsuite directory and invoke the DejaGnu
109`runtest' command directly.
110
111 cd testsuite
112 make site.exp
113 runtest GDB_PERFTEST_MODE=both GDB_PERFTEST_TIMEOUT=4000 --directory=gdb.perf solib.exp SOLIB_COUNT=8
114
115Only "compile", "run" and "both" are valid to GDB_PERFTEST_MODE. They
116stand for "compile tests only", "run tests only", and "compile and run
117tests" respectively. "both" is the default. GDB_PERFTEST_TIMEOUT
118specify the timeout, which is 3000 in default. The result of
119performance test is appended in `testsuite/perftest.log'.
120
b866c52d
SS
121Testsuite Parameters
122********************
123
124The following parameters are DejaGNU variables that you can set to
125affect the testsuite run globally.
126
b866c52d
SS
127GDB
128
129By default, the testsuite exercises the GDB in the build directory,
130but you can set GDB to be a pathname to a different version. For
131instance,
132
133 make check RUNTESTFLAGS=GDB=/usr/bin/gdb
134
135runs the testsuite on the GDB in /usr/bin.
136
137GDBSERVER
138
139You can set GDBSERVER to be a particular GDBserver of interest, so for
140instance
141
142 make check RUNTESTFLAGS="GDB=/usr/bin/gdb GDBSERVER=/usr/bin/gdbserver"
143
144checks both the installed GDB and GDBserver.
145
146INTERNAL_GDBFLAGS
147
148Command line options passed to all GDB invocations.
149
150The default is "-nw -nx".
151
152`-nw' disables any of the windowed interfaces.
153`-nx' disables ~/.gdbinit, so that it doesn't interfere with
154the tests.
155
156This is actually considered an internal variable, and you
157won't normally want to change it. However, in some situations,
158this may be tweaked as a last resort if the testsuite doesn't
159have direct support for the specifics of your environment.
160The testsuite does not override a value provided by the user.
161
162As an example, when testing an installed GDB that has been
163configured with `--with-system-gdbinit', like by default,
164you do not want ~/.gdbinit to interfere with tests, but, you
165may want the system .gdbinit file loaded. As there's no way to
166ask the testsuite, or GDB, to load the system gdbinit but
167not ~/.gdbinit, a workaround is then to remove `-nx' from
168INTERNAL_GDBFLAGS, and point $HOME at a directory without
169a .gdbinit. For example:
170
171 cd testsuite
172 HOME=`pwd` runtest \
173 GDB=/usr/bin/gdb \
174 GDBSERVER=/usr/bin/gdbserver \
175 INTERNAL_GDBFLAGS=-nw
176
177GDB_PARALLEL
178
e352bf0a
PA
179To use parallel testing mode without using the the Makefile, set
180GDB_PARALLEL on the runtest command line to "yes". Before starting
181the tests, you must ensure that the directories cache, outputs, and
182temp in the test suite build directory are either empty or have been
183deleted. cache in particular is used to share data across invocations
184of runtest, and files there may affect the test results. The Makefile
185automatically does these deletions.
186
187FORCE_PARALLEL
188
189Setting FORCE_PARALLEL to any non-empty value forces parallel testing
190mode even if RUNTESTFLAGS is not empty.
b866c52d 191
51f77c37
PA
192FORCE_SEPARATE_MI_TTY
193
194Setting FORCE_MI_SEPARATE_UI to 1 forces all MI testing to start GDB
195in console mode, with MI running on a separate TTY, on a secondary UI
196started with "new-ui".
197
b866c52d
SS
198GDB_INOTIFY
199
200For debugging parallel mode, it is handy to be able to see when a test
201case writes to a file outside of its designated output directory.
202
203If you have the inotify-tools package installed, you can set the
204GDB_INOTIFY variable on the runtest command line. This will cause the
205test suite to watch for parallel-unsafe file creations and report
206them, both to stdout and in the test suite log file.
207
208This setting is only meaningful in conjunction with GDB_PARALLEL.
209
c17ef0d5
DE
210TESTS
211
212This variable is used to specify which set of tests to run.
213It is passed to make (not runtest) and its contents are a space separated
214list of tests to run.
215
216If using GNU make then the contents are wildcard-expanded using
217GNU make's $(wildcard) function. Test paths must be fully specified,
218relative to the "testsuite" subdirectory. This allows one to run all
4992aa20
JM
219tests in a subdirectory by passing "gdb.subdir/*.exp", or more simply
220by using the check-gdb.subdir target in the Makefile.
221
c17ef0d5
DE
222If for some strange reason one wanted to run all tests that begin with
223the letter "d" that is also possible: TESTS="*/d*.exp".
224
225Do not write */*.exp to specify all tests (assuming all tests are only
226nested one level deep, which is not necessarily true). This will pick up
227.exp files in ancillary directories like "lib" and "config".
228Instead write gdb.*/*.exp.
229
230Example:
231
232 make -j10 check TESTS="gdb.server/[s-w]*.exp */x*.exp"
233
234If not using GNU make then the value is passed directly to runtest.
235If not specified, all tests are run.
b866c52d 236
2a31c623
PA
237READ1
238
239This make (not runtest) variable is used to specify whether the
240testsuite preloads the read1.so library into expect. Any non-empty
241value means true. See "Race detection" below.
242
c7ab0aef
SDJ
243GDB_TEST_SOCKETHOST
244
245This variable can provide the hostname/address that should be used
246when performing GDBserver-related tests. This is useful in some
247situations, e.g., when you want to test the IPv6 connectivity of GDB
248and GDBserver, or when using a different hostname/address is needed.
249For example, to make GDB and GDBserver use IPv6-only connections, you
250can do:
251
252 make check TESTS="gdb.server/*.exp" RUNTESTFLAGS='GDB_TEST_SOCKETHOST=tcp6:[::1]'
253
254Note that only a hostname/address can be provided, without a port
255number.
256
f63c03b4
SDJ
257TS
258
259This variable turns on the timestamp printing for each line of "make
260check". Note that the timestamp will be printed on stdout output
261only. In other words, there will be no timestamp output on either
262gdb.sum and gdb.log files. If you would like to enable timestamp
263printing, you can do:
264
265 make check TS=1
266
267TS_FORMAT
268
269You can provide a custom format for timestamp printing with this
270variable. The format must be a string compatible with "strftime".
271This variable is only useful when the TS variable is also provided.
272If you would like to change the output format of the timestamp, you
273can do:
274
275 make check TS=1 TS_FORMAT='[%b %H:%S]'
276
29b52314
AH
277GDB_DEBUG
278
279When set gdb debug is sent to the file gdb.debug in the test output
280directory. It should be set to a comma separated list of gdb debug
281components.
282For example, to turn on debugging for infrun and target, you can do:
283
284 make check GDB_DEBUG="infrun,target"
285
dd06d4d6
AH
286GDBSERVER_DEBUG
287
b420b89e
AH
288When set gdbserver debug is sent to the a file in the test output directory.
289It should be set to a comma separated list of the following options:
290 debug - write gdbserver debug to gdbserver.debug.
291 remote - write gdbserver remote debug to gdbserver.debug.
292 replay - write a replay log to the file gdbserver.replay for use
293 with gdbreplay.
294Alternatively, it can be set to "all" to turn on all the above
295For example, to turn on gdbserver debugging, you can do:
dd06d4d6 296
b420b89e 297 make check GDBSERVER_DEBUG="debug,replay"
dd06d4d6 298
2a31c623
PA
299Race detection
300**************
301
302The testsuite includes a mechanism that helps detect test races.
303
304For example, say the program running under expect outputs "abcd", and
305a test does something like this:
306
307 expect {
308 "a.*c" {
309 }
310 "b" {
311 }
312 "a" {
313 }
314 }
315
316Which case happens to match depends on what expect manages to read
317into its internal buffer in one go. If it manages to read three bytes
318or more, then the first case matches. If it manages to read two
319bytes, then the second case matches. If it manages to read only one
320byte, then the third case matches.
321
322To help detect these cases, the race detection mechanism preloads a
323library into expect that forces the `read' system call to always
324return at most 1 byte.
325
326To enable this, either pass a non-empty value in the READ1 make
327variable, or use the check-read1 make target instead of check.
328
329Examples:
330
331 make -j10 check-read1 TESTS="*/paginate-*.exp"
332 make -j10 check READ1="1"
333
b866c52d
SS
334Testsuite Configuration
335***********************
336
337It is possible to adjust the behavior of the testsuite by defining
338the global variables listed below, either in a `site.exp' file,
339or in a board file.
340
341gdb_test_timeout
342
343Defining this variable changes the default timeout duration used
344during communication with GDB. More specifically, the global variable
345used during testing is `timeout', but this variable gets reset to
346`gdb_test_timeout' at the beginning of each testcase, which ensures
347that any local change to `timeout' in a testcase does not affect
348subsequent testcases.
349
350This global variable comes in handy when the debugger is slower than
351normal due to the testing environment, triggering unexpected `TIMEOUT'
352test failures. Examples include when testing on a remote machine, or
353against a system where communications are slow.
354
355If not specifically defined, this variable gets automatically defined
356to the same value as `timeout' during the testsuite initialization.
357The default value of the timeout is defined in the file
358`testsuite/config/unix.exp' (at least for Unix hosts; board files may
359have their own values).
360
8b696e31
YQ
361gdb_reverse_timeout
362
363Defining this variable changes the default timeout duration when tests
364under gdb.reverse directory are running. Process record and reverse
365debugging is so slow that its tests have unexpected `TIMEOUT' test
366failures. This global variable is useful to bump up the value of
367`timeout' for gdb.reverse tests and doesn't cause any delay where
368actual failures happen in the rest of the testsuite.
369
b866c52d
SS
370
371Board Settings
372**************
373
374DejaGNU includes the concept of a "board file", which specifies
375testing details for a particular target (which are often bare circuit
376boards, thus the name).
377
378In the GDB testsuite specifically, the board file may include a
379number of "board settings" that test cases may check before deciding
380whether to exercise a particular feature. For instance, a board
381lacking any I/O devices, or perhaps simply having its I/O devices
382not wired up, should set `noinferiorio'.
383
384Here are the supported board settings:
385
386gdb,cannot_call_functions
387
388 The board does not support inferior call, that is, invoking inferior
389 functions in GDB.
390
391gdb,can_reverse
392
393 The board supports reverse execution.
394
395gdb,no_hardware_watchpoints
396
397 The board does not support hardware watchpoints.
398
399gdb,nofileio
400
401 GDB is unable to intercept target file operations in remote and
402 perform them on the host.
403
404gdb,noinferiorio
405
406 The board is unable to provide I/O capability to the inferior.
407
408gdb,noresults
409
410 A program will not return an exit code or result code (or the value
411 of the result is undefined, and should not be looked at).
412
413gdb,nosignals
414
415 The board does not support signals.
416
417gdb,skip_huge_test
418
419 Skip time-consuming tests on the board with slow connection.
420
421gdb,skip_float_tests
422
423 Skip tests related to floating point.
424
425gdb,use_precord
426
427 The board supports process record.
428
a25eb028
MR
429gdb_init_command
430gdb_init_commands
431
432 Commands to send to GDB every time a program is about to be run. The
433 first of these settings defines a single command as a string. The
434 second defines a TCL list of commands being a string each. The commands
435 are sent one by one in a sequence, first from `gdb_init_command', if any,
436 followed by individual commands from `gdb_init_command', if any, in this
437 list's order.
438
b866c52d
SS
439gdb_server_prog
440
441 The location of GDBserver. If GDBserver somewhere other than its
442 default location is used in test, specify the location of GDBserver in
443 this variable. The location is a file name for GDBserver, and may be
444 either absolute or relative to the testsuite subdirectory of the build
445 directory.
446
447in_proc_agent
448
449 The location of the in-process agent (used for fast tracepoints and
450 other special tests). If the in-process agent of interest is anywhere
451 other than its default location, set this variable. The location is a
452 filename, and may be either absolute or relative to the testsuite
453 subdirectory of the build directory.
454
455noargs
456
457 GDB does not support argument passing for inferior.
458
459no_long_long
460
461 The board does not support type long long.
462
463use_cygmon
464
465 The board is running the monitor Cygmon.
466
467use_gdb_stub
468
469 The tests are running with a GDB stub.
470
b477a5e6
PA
471exit_is_reliable
472
473 Set to true if GDB can assume that letting the program run to end
474 reliably results in program exits being reported as such, as opposed
475 to, e.g., the program ending in an infinite loop or the board
476 crashing/resetting. If not set, this defaults to $use_gdb_stub. In
477 other words, native targets are assumed reliable by default, and
478 remote stubs assumed unreliable.
479
b866c52d
SS
480gdb,predefined_tsv
481
482 The predefined trace state variables the board has.
483
f6512a69
SM
484gdb,no_thread_names
485
486 The target doesn't support thread names.
b866c52d 487
968aa7ae
AH
488gdb,pie_flag
489
490 The flag required to force the compiler to produce position-independent
491 executables.
492
493gdb,pie_ldflag
494
495 The flag required to force the linker to produce position-independent
496 executables.
497
6e8b1ab2
JV
498gdb,nopie_flag
499
500 The flag required to force the compiler to produce non-position-independent
501 executables.
502
29b52314
AH
503gdb,debug
504
505 When set gdb debug is sent to the file gdb.debug in the test output
506 directory. It should be set to a comma separated list of gdb debug
507 components. For example, to turn on debugging for infrun and target, set to
508 "infrun,target".
509
dd06d4d6
AH
510gdbserver,debug
511
512 When set gdbserver debug is sent to the file gdbserver.debug in the test
b420b89e 513 output directory. For valid values see the entry for GDBSERVER_DEBUG.
dd06d4d6 514
b866c52d
SS
515Testsuite Organization
516**********************
517
518The testsuite is entirely contained in `gdb/testsuite'. The main
519directory of the testsuite includes some makefiles and configury, but
520these are minimal, and used for little besides cleaning up, since the
521tests themselves handle the compilation of the programs that GDB will
522run.
523
524The file `testsuite/lib/gdb.exp' contains common utility procs useful
525for all GDB tests, while the directory testsuite/config contains
526configuration-specific files, typically used for special-purpose
527definitions of procs like `gdb_load' and `gdb_start'.
528
529The tests themselves are to be found in directories named
530'testsuite/gdb.* and subdirectories of those. The names of the test
531files must always end with ".exp". DejaGNU collects the test files by
532wildcarding in the test directories, so both subdirectories and
533individual files typically get chosen and run in alphabetical order.
534
535The following lists some notable types of subdirectories and what they
536are for. Since DejaGNU finds test files no matter where they are
537located, and since each test file sets up its own compilation and
538execution environment, this organization is simply for convenience and
539intelligibility.
540
541gdb.base
542
543This is the base testsuite. The tests in it should apply to all
544configurations of GDB (but generic native-only tests may live here).
545The test programs should be in the subset of C that is both valid
546ANSI/ISO C, and C++.
547
548gdb.<lang>
549
550Language-specific tests for any language besides C. Examples are
9c37b5ae 551gdb.cp for C++ and gdb.rust for Rust.
b866c52d
SS
552
553gdb.<platform>
554
555Non-portable tests. The tests are specific to a specific
bc23328c 556configuration (host or target), such as eCos.
b866c52d
SS
557
558gdb.arch
559
560Architecture-specific tests that are (usually) cross-platform.
561
562gdb.<subsystem>
563
564Tests that exercise a specific GDB subsystem in more depth. For
565instance, gdb.disasm exercises various disassemblers, while
566gdb.stabs tests pathways through the stabs symbol reader.
567
71c0c615
YQ
568gdb.perf
569
570GDB performance tests.
571
b866c52d
SS
572Writing Tests
573*************
574
575In many areas, the GDB tests are already quite comprehensive; you
576should be able to copy existing tests to handle new cases. Be aware
577that older tests may use obsolete practices but have not yet been
578updated.
579
580You should try to use `gdb_test' whenever possible, since it includes
581cases to handle all the unexpected errors that might happen. However,
582it doesn't cost anything to add new test procedures; for instance,
583gdb.base/exprs.exp defines a `test_expr' that calls `gdb_test'
584multiple times.
585
586Only use `send_gdb' and `gdb_expect' when absolutely necessary. Even
587if GDB has several valid responses to a command, you can use
588`gdb_test_multiple'. Like `gdb_test', `gdb_test_multiple' recognizes
589internal errors and unexpected prompts.
590
591Do not write tests which expect a literal tab character from GDB. On
592some operating systems (e.g. OpenBSD) the TTY layer expands tabs to
593spaces, so by the time GDB's output reaches `expect' the tab is gone.
594
595The source language programs do *not* need to be in a consistent
596style. Since GDB is used to debug programs written in many different
597styles, it's worth having a mix of styles in the testsuite; for
598instance, some GDB bugs involving the display of source lines might
599never manifest themselves if the test programs used GNU coding style
600uniformly.
601
602Some testcase results need more detailed explanation:
603
604KFAIL
605
606Use KFAIL for known problem of GDB itself. You must specify the GDB
607bug report number, as in these sample tests:
608
609 kfail "gdb/13392" "continue to marker 2"
610
611or
612
613 setup_kfail gdb/13392 "*-*-*"
614 kfail "continue to marker 2"
615
616
617XFAIL
618
619Short for "expected failure", this indicates a known problem with the
620environment. This could include limitations of the operating system,
621compiler version, and other components.
622
623This example from gdb.base/attach-pie-misread.exp is a sanity check
624for the target environment:
625
626 # On x86_64 it is commonly about 4MB.
627 if {$stub_size > 25000000} {
628 xfail "stub size $stub_size is too large"
629 return
630 }
631
632You should provide bug report number for the failing component of the
633environment, if such bug report is available, as with this example
634referring to a GCC problem:
635
636 if {[test_compiler_info {gcc-[0-3]-*}]
637 || [test_compiler_info {gcc-4-[0-5]-*}]} {
638 setup_xfail "gcc/46955" *-*-*
639 }
640 gdb_test "python print ttype.template_argument(2)" "&C::c"
641
642Note that it is also acceptable, and often preferable, to avoid
643running the test at all. This is the better option if the limitation
644is intrinsic to the environment, rather than a bug expected to be
645fixed in the near future.
739b3f1d
PA
646
647Local vs Remote vs Native
648*************************
649
650It's unfortunately easy to get confused in the testsuite about what's
651native and what's not, what's remote and what's not. The confusion is
652caused by the overlap in vocabulary between DejaGnu and GDB.
653
654From a DejaGnu point of view:
655
656 - native: the host or target board is considered native if the its
657 triplet is the same as the build system's triplet,
658
659 - remote: the host or target board is considered remote if it's
660 running on a different machine, and thus require ssh, for example,
661 to run commands, versus simply running commands directly.
662
663Note that they are not mutually exclusive, as you can have a remote
664machine that has the same triplet as the build machine.
665
666From a GDB point of view:
667
668 - native: when GDB uses system calls such as ptrace to interact
669 directly with processes on the same system its running on,
670
671 - remote: when GDB speaks the RSP (Remote Serial Protocol) with
672 another program doing the ptrace stuff.
673
674Note that they are mutually exclusive. An inferior can only be either
675debugged with the native target, or with the remote target a specific
676time.
677
678That means that there are cases where the target is not remote for
679DejaGnu, but is remote for GDB (e.g. running GDBserver on the same
680machine).
681
682You can also have a remote target for DejaGnu, but native for GDB
683(e.g. building on x86 a GDB that runs on ARM and running the
684testsuite with a remote host).
685
686Therefore, care must be taken to check for the right kind of remote.
687Use [is_remote target] to check whether the DejaGnu target board is
688remote. When what you really want to know is whether GDB is using the
689remote protocol, because feature X is only available when GDB debugs
690natively, check gdb_protocol instead.
This page took 0.784083 seconds and 4 git commands to generate.