* gdb.cp/overload.exp: Test that the filename portion of a linespec
authorKeith Seitz <keiths@redhat.com>
Thu, 4 Mar 2010 18:38:17 +0000 (18:38 +0000)
committerKeith Seitz <keiths@redhat.com>
Thu, 4 Mar 2010 18:38:17 +0000 (18:38 +0000)
can be quoted.  Test that both the filename and function/line
portions can be quoted at the same time.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/overload.exp

index 196791ac89704875e4a9eeeb0b6b816fe37f7dd2..b5e4c986bd016b160b2038c6af93692f2eaa9eaa 100644 (file)
@@ -1,3 +1,9 @@
+2010-03-04  Keith Seitz  <keiths@redhat.com>
+
+       * gdb.cp/overload.exp: Test that the filename portion of a linespec
+       can be quoted.  Test that both the filename and function/line
+       portions can be quoted at the same time.
+
 2010-03-04  Pedro Alves  <pedro@codesourcery.com>
 
        * gdb.base/watch-non-mem.c, gdb.base/watch-non-mem.exp: New.
index ae8fd2652ada8421d3579d6baa4672d0e9f65358..c6d8bffe49faf9c59c86d68d89ec58a92768a49a 100644 (file)
@@ -299,6 +299,8 @@ gdb_test "list ${srcfile}:intToChar" "int intToChar.*"
 gdb_test "list ${srcfile}:intToChar(char)" "int intToChar.*"
 gdb_test "list ${srcfile}:'intToChar(char)'" "int intToChar.*"
 gdb_test "list '${srcfile}:intToChar(char)'" "int intToChar.*"
+gdb_test "list '${srcfile}':intToChar(char)" "int intToChar.*"
+gdb_test "list '${srcfile}':'intToChar(char)'" "int intToChar.*"
 
 # And with filename and namespace... which does not work.