diff options
author | matt rice <ratmice@gmail.com> | 2011-07-06 22:15:02 +0000 |
---|---|---|
committer | matt rice <ratmice@gmail.com> | 2011-07-06 22:15:02 +0000 |
commit | facde0e593ae909c801e03cada83c05bec89aad5 (patch) | |
tree | 9646dcbb23bb2bac382edfd24fd69f31bff4a707 /gdb | |
parent | e24719f6e73a89da8877536830ff047ffc4e2377 (diff) | |
download | gdb-facde0e593ae909c801e03cada83c05bec89aad5.zip gdb-facde0e593ae909c801e03cada83c05bec89aad5.tar.gz gdb-facde0e593ae909c801e03cada83c05bec89aad5.tar.bz2 |
gdb.python/python.exp: Update filename paths.
gdb.python/py-symtab.exp: Ditto.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/py-symtab.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.python/python.exp | 6 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 6d00d6c..276f60b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-07-06 Matt Rice <ratmice@gmail.com> + + * gdb.python/python.exp: Update filename paths. + * gdb.python/py-symtab.exp: Ditto. + 2011-07-06 Marek Polacek <mpolacek@redhat.com> * gdb.python/py-evthreads.exp: Add missing `$'. diff --git a/gdb/testsuite/gdb.python/py-symtab.exp b/gdb/testsuite/gdb.python/py-symtab.exp index c52f5ef..ef35c5d 100644 --- a/gdb/testsuite/gdb.python/py-symtab.exp +++ b/gdb/testsuite/gdb.python/py-symtab.exp @@ -54,13 +54,13 @@ gdb_py_test_silent_cmd "python sal = frame.find_sal()" "Get block" 0 gdb_py_test_silent_cmd "python symtab = sal.symtab" "Get block" 0 # Test sal. -gdb_test "python print sal.symtab" "gdb/testsuite/gdb.python/py-symbol.c.*" "Test symtab" +gdb_test "python print sal.symtab" ".*gdb.python/py-symbol.c.*" "Test symtab" gdb_test "python print sal.pc" "${decimal}" "Test sal.pc" gdb_test "python print sal.line" "42" "Test sal.line" gdb_test "python print sal.is_valid()" "True" "Test sal.is_valid" # Test symbol table. -gdb_test "python print symtab.filename" "testsuite/gdb.python/py-symbol.c.*" "Test symtab.filename" +gdb_test "python print symtab.filename" ".*gdb.python/py-symbol.c.*" "Test symtab.filename" gdb_test "python print symtab.objfile" "<gdb.Objfile object at ${hex}>" "Test symtab.objfile" gdb_test "python print symtab.fullname()" "testsuite/gdb.python/py-symbol.c.*" "Test symtab.fullname" gdb_test "python print symtab.is_valid()" "True" "Test symtab.is_valid()" diff --git a/gdb/testsuite/gdb.python/python.exp b/gdb/testsuite/gdb.python/python.exp index a68dd24..e0deb63 100644 --- a/gdb/testsuite/gdb.python/python.exp +++ b/gdb/testsuite/gdb.python/python.exp @@ -153,14 +153,14 @@ gdb_py_test_silent_cmd "python symtab = gdb.decode_line()" "test decode_line cur gdb_test "python print len(symtab)" "2" "Test decode_line current location" gdb_test "python print symtab\[0\]" "None" "Test decode_line expression parse" gdb_test "python print len(symtab\[1\])" "1" "Test decode_line current location" -gdb_test "python print symtab\[1\]\[0\].symtab" "gdb/testsuite/gdb.python/python.c.*" "Test decode_line current locationn filename" +gdb_test "python print symtab\[1\]\[0\].symtab" ".*gdb.python/python.c.*" "Test decode_line current locationn filename" gdb_test "python print symtab\[1\]\[0\].line" "22" "Test decode_line current location line number" gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"python.c:26 if foo\")" "test decode_line python.c:26" 1 gdb_test "python print len(symtab)" "2" "Test decode_line python.c:26 length" gdb_test "python print symtab\[0\]" "if foo" "Test decode_line expression parse" gdb_test "python print len(symtab\[1\])" "1" "Test decode_line python.c:26 length" -gdb_test "python print symtab\[1\]\[0\].symtab" "gdb/testsuite/gdb.python/python.c.*" "Test decode_line python.c:26 filename" +gdb_test "python print symtab\[1\]\[0\].symtab" ".*gdb.python/python.c.*" "Test decode_line python.c:26 filename" gdb_test "python print symtab\[1\]\[0\].line" "26" "Test decode_line python.c:26 line number" gdb_test "python gdb.decode_line(\"randomfunc\")" \ @@ -168,7 +168,7 @@ gdb_test "python gdb.decode_line(\"randomfunc\")" \ gdb_py_test_silent_cmd "python symtab = gdb.decode_line(\"func1\")" "test decode_line func1()" 1 gdb_test "python print len(symtab)" "2" "Test decode_line func1 length" gdb_test "python print len(symtab\[1\])" "1" "Test decode_line func1 length" -gdb_test "python print symtab\[1\]\[0\].symtab" "gdb/testsuite/gdb.python/python-1.c.*" "Test decode_line func1 filename" +gdb_test "python print symtab\[1\]\[0\].symtab" ".*gdb.python/python-1.c.*" "Test decode_line func1 filename" gdb_test "python print symtab\[1\]\[0\].line" "19" "Test decode_line func1 line number" # gdb.write |