aboutsummaryrefslogtreecommitdiff
path: root/runtest.exp
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2017-08-15 06:06:16 +1000
committerBen Elliston <bje@gnu.org>2017-08-15 06:06:16 +1000
commit3073ac1d0b87b8e42f2b7eb427239d1053597f0b (patch)
tree97eb3c5aaf2b6250597afd1914fbb1af2ef1c475 /runtest.exp
parentb8108df20a24e9a0dc5306ee2deac9e6c68c966e (diff)
downloaddejagnu-3073ac1d0b87b8e42f2b7eb427239d1053597f0b.zip
dejagnu-3073ac1d0b87b8e42f2b7eb427239d1053597f0b.tar.gz
dejagnu-3073ac1d0b87b8e42f2b7eb427239d1053597f0b.tar.bz2
Fix bug reported by Andrey ``Bass'' Shcheglov.
* lib/framework.exp (open_logs): Set .xml filename correctly. * runtest.exp: Remove xml_file_name var. (usage): Update --xml option to not take an argument. (load_tool_init): Likewise. * doc/dejagnu.texi (Invoking runtest): Update documentation. * doc/runtest.1: Likewise.
Diffstat (limited to 'runtest.exp')
-rw-r--r--runtest.exp6
1 files changed, 2 insertions, 4 deletions
diff --git a/runtest.exp b/runtest.exp
index 23db735..173c9a4 100644
--- a/runtest.exp
+++ b/runtest.exp
@@ -53,8 +53,7 @@ set kfail_flag 0 ;# indicates that it is a known failure
set kfail_prms 0 ;# bug id for the description of the known failure
set sum_file "" ;# name of the file that contains the summary log
set base_dir "" ;# the current working directory
-set xml_file_name "" ;# name of the xml output if requested
-set xml_file "" ;# handle on the xml file if requested
+set xml_file "" ;# handle on the XML file if requested
set xml 0 ;# flag for requesting xml
set logname "" ;# the users login name
set prms_id 0 ;# GNATS prms id number
@@ -398,7 +397,7 @@ proc usage { } {
send_user "\t--tool_opts \[options\]\tA list of additional options to pass to the tool\n"
send_user "\t--verbose, -v\t\tProduce verbose output\n"
send_user "\t--version, -V\t\tPrint all relevant version numbers\n"
- send_user "\t--xml\[=name\], -x\tTurn on XML output generation\n"
+ send_user "\t--xml, -x\t\tWrite out an XML results file\n"
send_user "\t--D\[0-1\]\t\tTcl debugger\n"
send_user "\tscript.exp\[=arg(s)\]\tRun these tests only\n"
if { [info exists tool] } {
@@ -1170,7 +1169,6 @@ for { set i 0 } { $i < $argc } { incr i } {
}
"--x*" {
- set xml_file_name $optarg
set xml 1
verbose "XML logging turned on"
continue