From patchwork Sat Nov 24 09:41:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Committed: handle negative numbers in gcc-gdb-test.exp Date: Fri, 23 Nov 2012 23:41:25 -0000 From: Hans-Peter Nilsson X-Patchwork-Id: 201447 Message-Id: To: gcc-patches@gcc.gnu.org Without this, I got weird ERRORs and those Tcl backtraces you come to hate, instead of the expected FAILs. Committed as obvious after running a failing guality test and obvserving the intended change. (Well ok, *adding an explanatory comment* is apparently not obvious, but I'll take that liberty...) testsuite: * lib/gcc-gdb-test.exp (gdb-test): Pass -- as first argument to to send_log. brgds, H-P Index: gcc/testsuite/lib/gcc-gdb-test.exp =================================================================== --- gcc/testsuite/lib/gcc-gdb-test.exp (revision 192677) +++ gcc/testsuite/lib/gcc-gdb-test.exp (working copy) @@ -74,7 +74,9 @@ proc gdb-test { args } { if { $first == $second } { pass "$testname" } else { - send_log "$first != $second\n" + # We need the -- to disambiguate $first from an option, + # as it may be negative. + send_log -- "$first != $second\n" fail "$testname" } remote_close target