diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-10-11 19:01:31 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-10-11 19:01:31 +0000 |
commit | fac7ceb31e1d0600828e3d1c5729871fe1f10600 (patch) | |
tree | fd01d5eeb3f3919bea3cb0c84dfa67d6bcb2ed87 /gdb | |
parent | 0e8aefe7f01abedbb2e011e8b451ac6cfbc61ffe (diff) | |
download | fsf-binutils-gdb-fac7ceb31e1d0600828e3d1c5729871fe1f10600.zip fsf-binutils-gdb-fac7ceb31e1d0600828e3d1c5729871fe1f10600.tar.gz fsf-binutils-gdb-fac7ceb31e1d0600828e3d1c5729871fe1f10600.tar.bz2 |
* gdb.python/py-shared.exp: Relax filename check to handle remote:
sysroot.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-shared.exp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 0e6c4c9..1ccfe08 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-10-11 Ulrich Weigand <ulrich.weigand@linaro.org> + + * gdb.python/py-shared.exp: Relax filename check to handle remote: + sysroot. + 2011-10-11 Jan Kratochvil <jan.kratochvil@redhat.com> Reimplement @entry in input expressions. diff --git a/gdb/testsuite/gdb.python/py-shared.exp b/gdb/testsuite/gdb.python/py-shared.exp index ea28f3b..51e167b 100644 --- a/gdb/testsuite/gdb.python/py-shared.exp +++ b/gdb/testsuite/gdb.python/py-shared.exp @@ -62,7 +62,7 @@ runto [gdb_get_line_number "Break to end."] # Test gdb.solib_name gdb_test "p &func1" "" "func1 address" gdb_py_test_silent_cmd "python func1 = gdb.history(0)" "Aquire func1 address" 1 -gdb_test "python print gdb.solib_name(long(func1))" "gdb/testsuite/gdb.python/py-shared-sl.sl" "test func1 solib location" +gdb_test "python print gdb.solib_name(long(func1))" "py-shared-sl.sl" "test func1 solib location" gdb_test "p &main" "" "main address" gdb_py_test_silent_cmd "python main = gdb.history(0)" "Aquire main address" 1 |