Unnecessary restore of timeout global at end of gdb.base/completion.exp
authorJoel Brobecker <brobecker@adacore.com>
Tue, 27 May 2014 21:03:11 +0000 (14:03 -0700)
committerJoel Brobecker <brobecker@adacore.com>
Mon, 2 Jun 2014 15:42:30 +0000 (08:42 -0700)
This patch removes some code in gdb.base/compilation.exp which
is aimed at restoring the original timeout global value after having
changed it for this testcase. Restoring the timeout global is not
necessary as this is taken care of by gdb_init, which is called
at the start of each testing.

gdb/testsuite/ChangeLog:

        * gdb.base/completion.exp: Remove code aimed at restoring TIMEOUT.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/completion.exp

index 06818af9e8e0d410527af865b5067693fd5947aa..3db31999eb94e755324dcfaeece4c744aaba9d0b 100644 (file)
@@ -1,3 +1,7 @@
+2014-06-02  Joel Brobecker  <brobecker@adacore.com>
+
+       * gdb.base/completion.exp: Remove code aimed at restoring TIMEOUT.
+
 2014-06-01  Yao Qi  <yao@codesourcery.com>
 
        * gdb.base/watchpoint.exp (test_watch_location): Check null
index 2608309734a8cb8aef21000b9f648f5e578230f8..2a85df57a65d1ad0c71a13f7327e5554a1ca0f4a 100644 (file)
@@ -66,7 +66,6 @@ if ![runto_main] then {
         perror "tests suppressed"
 }
 
-set oldtimeout1 $timeout
 set timeout 30
 
 gdb_test_no_output "complete print values\[0\].x." \
@@ -747,7 +746,4 @@ gdb_test_multiple "" "$test" {
     }
 }
 
-# Restore globals modified in this test...
-set timeout $oldtimeout1
-
 return 0