gdb/testsuite/
authorJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 25 Jul 2012 20:17:59 +0000 (20:17 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Wed, 25 Jul 2012 20:17:59 +0000 (20:17 +0000)
Fix compatibility with Tcl before 7.5.
* lib/future.exp (lreverse): New function if it does not exist.

gdb/testsuite/ChangeLog
gdb/testsuite/lib/future.exp

index 6988348..b0d8411 100644 (file)
@@ -1,3 +1,8 @@
+2012-07-25  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       Fix compatibility with Tcl before 7.5.
+       * lib/future.exp (lreverse): New function if it does not exist.
+
 2012-07-25  Marc Khouzam  <marc.khouzam@ericsson.com>
 
        * gdb.mi/mi-pending.c: New method to set a second pending
index bf47988..226a690 100644 (file)
@@ -521,3 +521,16 @@ if {$use_gdb_compile} {
     catch {rename default_target_compile {}}
     rename gdb_default_target_compile default_target_compile
 }
+
+
+# Provide 'lreverse' missing in Tcl before 7.5.
+
+if {[info procs lreverse] == ""} {
+    proc lreverse { arg } {
+       set retval {}
+       while { [llength $retval] < [llength $arg] } {
+           lappend retval [lindex $arg end-[llength $retval]]
+       }
+       return $retval
+    }
+}