* gdb.base/source.exp: Don't include full file name in test name.
authorTom Tromey <tromey@redhat.com>
Tue, 18 Oct 2011 14:14:01 +0000 (14:14 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 18 Oct 2011 14:14:01 +0000 (14:14 +0000)
* gdb.python/python.exp: Don't include full file name in test
name.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/source.exp
gdb/testsuite/gdb.python/python.exp

index bbe607fc0085f0e9853d05fa1042faaddf693c1b..0d1eb49e79338824f70207a7e501dae7c6c14ee2 100644 (file)
@@ -1,3 +1,9 @@
+2011-10-18  Tom Tromey  <tromey@redhat.com>
+
+       * gdb.base/source.exp: Don't include full file name in test name.
+       * gdb.python/python.exp: Don't include full file name in test
+       name.
+
 2011-10-18  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * gdb.base/attach-pie-noexec.c: New files.
index 7a67ff2d1b9a17e84240354c03475cd9320f1f09..5d40eaf7f5b508fecafa6142174feb0cfb402034 100644 (file)
@@ -49,7 +49,8 @@ gdb_test_multiple "source ${srcdir}/${subdir}/source-test.gdb" $test {
     }
 }
 
-gdb_test "dir ${srcdir}/${subdir}" "Source directories searched: .*"
+gdb_test "dir ${srcdir}/${subdir}" "Source directories searched: .*" \
+    "set search directories"
 gdb_test "source -s ./source-test.gdb" \
     "test source options" \
     "source -s"
index ee39dbad51834bd1c40e92b269ac2bdccc7b253f..ea8a4d56ca640c06329d38ff2f9c568522bc6a19 100644 (file)
@@ -47,7 +47,9 @@ gdb_test_multiple "python print 23" "verify python support" {
 
       # If Python is not supported, verify that sourcing a python script
       # causes an error.
-      gdb_test "source $srcdir/$subdir/source2.py" "Error in sourced command file:.*"
+      gdb_test "source $srcdir/$subdir/source2.py" \
+         "Error in sourced command file:.*" \
+         "source source2.py when python disabled"
       return -1
     }
     -re "$gdb_prompt $"        {}
@@ -73,7 +75,7 @@ gdb_py_test_multiple "indented multi-line python command" \
   "foo ()" "" \
   "end" "hello, world!"
 
-gdb_test "source $srcdir/$subdir/source2.py" "yes"
+gdb_test "source $srcdir/$subdir/source2.py" "yes" "source source2.py"
 
 gdb_test "python print gdb.current_objfile()" "None"
 gdb_test "python print gdb.objfiles()" "\\\[\\\]"