Document gdb.in/gdb.cmd files and debugredirect cli command
authorAlan Hayward <alan.hayward@arm.com>
Wed, 22 May 2019 12:40:20 +0000 (13:40 +0100)
committerAlan Hayward <alan.hayward@arm.com>
Wed, 22 May 2019 12:40:20 +0000 (13:40 +0100)
Add missing documentation for the debugredirect setting.

Add description and uses of gdb.in/gdb.cmd to the testsuite README.

Mention this in the NEWS file.

gdb/ChangeLog:

* NEWS: Add debugredirect and testsuite sections.

gdb/doc/ChangeLog:

* gdb.texinfo (Shell Commands): Add debugredirect.

gdb/testsuite/ChangeLog:

* README (Re-running Tests Outside The Testsuite): New section.

gdb/ChangeLog
gdb/NEWS
gdb/doc/ChangeLog
gdb/doc/gdb.texinfo
gdb/testsuite/ChangeLog
gdb/testsuite/README

index a998c5c60dc70862b882ab33af2c1c826d751ad4..52fc11d8f4939dc10dd12ec90b7d45acbde7d9c3 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-22  Alan Hayward  <alan.hayward@arm.com>
+
+       * NEWS: Add debugredirect and testsuite sections.
+
 2019-05-22  Simon Cook  <simon.cook@embecosm.com>
 
        * riscv-tdep.c (riscv_gdbarch_init): Support determining flen from
index 1e92a2b52c219daa9254c09771827368e9231897..792548139e9d9e314784a07ab5b4b701a842b58d 100644 (file)
--- a/gdb/NEWS
+++ b/gdb/NEWS
@@ -46,6 +46,10 @@ show print max-depth
   The default max-depth is 20, but this can be set to unlimited to get
   the old behavior back.
 
+set logging debugredirect [on|off]
+  By default, GDB debug output will go to both the terminal and the logfile.
+  Set if you want debug output to go only to the log file.
+
 * New MI commands
 
 -complete
@@ -53,6 +57,13 @@ show print max-depth
   were to be given as a command itself.  This is intended for use by MI
   frontends in cases when separate CLI and MI channels cannot be used.
 
+* Testsuite
+
+  The testsuite now creates the files gdb.cmd (containing the arguments
+  used to launch GDB) and gdb.in (containing all the commands sent to
+  GDB) in the output directory for each test script.  Multiple invocations
+  are appended with .1, .2, .3 etc.
+
 *** Changes in GDB 8.3
 
 * GDB and GDBserver now support access to additional registers on
index 9733b5b64b4e89ef61be49a341b352930a7c636c..c01ef292e94b5059372f83e18b3e25e582967576 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-22  Alan Hayward  <alan.hayward@arm.com>
+
+       * gdb.texinfo (Shell Commands): Add debugredirect.
+
 2019-05-22  Jan Vrany  <jan.vrany@fit.cvut.cz>
 
        * gdb.texinfo: Minor formatting fixes.
index e27752a9d6d16558f6cffc126dca0d4dacdeb766..3c4535ec506993832d7c04011132d814aca575cd 100644 (file)
@@ -1477,6 +1477,9 @@ you want @code{set logging on} to overwrite the logfile instead.
 @item set logging redirect [on|off]
 By default, @value{GDBN} output will go to both the terminal and the logfile.
 Set @code{redirect} if you want output to go only to the log file.
+@item set logging debugredirect [on|off]
+By default, @value{GDBN} debug output will go to both the terminal and the logfile.
+Set @code{debugredirect} if you want debug output to go only to the log file.
 @kindex show logging
 @item show logging
 Show the current values of the logging settings.
index 4060eadfbd488bc9290cc8e57e964b11a476d7e8..867455f7a58d40456f7dabe6aa4ef3d59d3df4ea 100644 (file)
@@ -1,3 +1,7 @@
+2019-05-22  Alan Hayward  <alan.hayward@arm.com>
+
+       * README (Re-running Tests Outside The Testsuite): New section.
+
 2019-05-21  Tom de Vries  <tdevries@suse.de>
 
        * gdb.arch/amd64-eval.exp: Require c++11.
index b6487cf8c4e09ecb8799b0dee2bf4819c50dc908..4795df1f75969fa25b966aabbcc4c419c62eb6fd 100644 (file)
@@ -95,6 +95,27 @@ example:
 
 The script will output its analysis report to the standard output.
 
+Re-running Tests Outside The Testsuite
+**************************************
+
+When running a test, the arguments used to run GDB are saved to gdb.cmd and
+all commands sent to GDB are saved to gdb.in.  As well as being a reference
+of the commands run, they can be used to manually re-run a test by using
+the gdb.in file as a batch file to a GDB launched with the arguments in the
+gdb.cmd file, for example:
+       $(cat outputs/gdb.base/store/gdb.cmd) -x outputs/gdb.base/store/gdb.in
+
+Tests that run GDB multiple times will append .1, .2, .3 etc to the end
+of each .cmd and .in file.
+
+When gdbserver is launched as part of a test, a gdbserver.cmd will be created.
+To re-run these tests, run the contents of gdbserver.cmd in a separate
+terminal before running gdb, for example:
+       $(cat outputs/gdb.base/store/gdbserver.cmd)
+Alternatively, if the test is run with GDBSERVER_DEBUG="replay", then this
+will create a gdbserver.replay file which can be used with the gdbreplay tool,
+instead of launching gdbserver.
+
 Running the Performance Tests
 *****************************