2002-01-13 Daniel Jacobowitz <drow@mvista.com>
authorDaniel Jacobowitz <drow@false.org>
Sun, 13 Jan 2002 22:13:06 +0000 (22:13 +0000)
committerDaniel Jacobowitz <drow@false.org>
Sun, 13 Jan 2002 22:13:06 +0000 (22:13 +0000)
        * gdb.base/completion.exp: Expand ${srcdir} to an absolute path.

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

index 3ec48f5..72db078 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-13  Daniel Jacobowitz  <drow@mvista.com>
+
+       * gdb.base/completion.exp: Expand ${srcdir} to an absolute path.
+
 2002-01-10  Jason Merrill  <jason@redhat.com>
 
        * gdb.c++/namespace.exp: Accept trailing const for 'this'.
index e8069d3..d8d5baf 100644 (file)
@@ -656,8 +656,14 @@ gdb_expect  {
         timeout         { fail "(timeout) complete 'file ./Make'" }
         }
 
-
-gdb_test "cd ${srcdir}" "Working directory ${srcdir}.*" "cd to \${srcdir}"
+# ${srcdir} may be a relative path.  We want to make sure we end up
+# in the right directory - so make sure we know where it is.
+set mydir [pwd]
+cd ${srcdir}
+set fullsrcdir [pwd]
+cd ${mydir}
+
+gdb_test "cd ${fullsrcdir}" "Working directory ${fullsrcdir}.*" "cd to \${srcdir}"
 send_gdb "file ./gdb.base/compl\t"
 sleep 1
 gdb_expect  {