* 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.
This commit is contained in:
Tom Tromey 2011-10-18 14:14:01 +00:00
parent 4313697959
commit 4af315526a
3 changed files with 12 additions and 3 deletions

View 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> 2011-10-18 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/attach-pie-noexec.c: New files. * gdb.base/attach-pie-noexec.c: New files.

View 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" \ gdb_test "source -s ./source-test.gdb" \
"test source options" \ "test source options" \
"source -s" "source -s"

View 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 # If Python is not supported, verify that sourcing a python script
# causes an error. # 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 return -1
} }
-re "$gdb_prompt $" {} -re "$gdb_prompt $" {}
@ -73,7 +75,7 @@ gdb_py_test_multiple "indented multi-line python command" \
"foo ()" "" \ "foo ()" "" \
"end" "hello, world!" "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.current_objfile()" "None"
gdb_test "python print gdb.objfiles()" "\\\[\\\]" gdb_test "python print gdb.objfiles()" "\\\[\\\]"