public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  archer-keiths-expr-cumulative: Remove more single quotes.
@ 2009-11-11  0:42 kseitz
  0 siblings, 0 replies; only message in thread
From: kseitz @ 2009-11-11  0:42 UTC (permalink / raw)
  To: archer-commits

The branch, archer-keiths-expr-cumulative has been updated
       via  38658a4ac3019cfa24dcab66f78309c80430a724 (commit)
      from  2b0f09640130bfc86e465a715e78848a61f22df8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 38658a4ac3019cfa24dcab66f78309c80430a724
Author: keiths <keiths@redhat.com>
Date:   Tue Nov 10 16:40:25 2009 -0800

    Remove more single quotes.

-----------------------------------------------------------------------

Summary of changes:
 gdb/testsuite/gdb.cp/cplusfuncs.exp |   34 +++++++++++++++++-----------------
 1 files changed, 17 insertions(+), 17 deletions(-)

First 500 lines of diff:
diff --git a/gdb/testsuite/gdb.cp/cplusfuncs.exp b/gdb/testsuite/gdb.cp/cplusfuncs.exp
index 2ec50ca..6cb930d 100644
--- a/gdb/testsuite/gdb.cp/cplusfuncs.exp
+++ b/gdb/testsuite/gdb.cp/cplusfuncs.exp
@@ -138,7 +138,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_char_star'\n"
+    send_gdb "print &dm_type_char_star\n"
     gdb_expect {
 	-re ".*dm_type_char_star\\(char \\*\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -158,7 +158,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_foo_ref'\n"
+    send_gdb "print &dm_type_foo_ref\n"
     gdb_expect {
 	-re ".*dm_type_foo_ref\\(foo &\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -177,7 +177,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_int_star'\n"
+    send_gdb "print &dm_type_int_star\n"
     gdb_expect {
 	-re ".*dm_type_int_star\\(int \\*\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -196,7 +196,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_long_star'\n"
+    send_gdb "print &dm_type_long_star\n"
     gdb_expect {
 	-re ".*dm_type_long_star\\(long \\*\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -220,7 +220,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_unsigned_int'\n"
+    send_gdb "print &dm_type_unsigned_int\n"
     gdb_expect {
 	-re ".*dm_type_unsigned_int\\(unsigned int\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -239,7 +239,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_void'\n"
+    send_gdb "print &dm_type_void\n"
     gdb_expect {
 	-re ".*dm_type_void\\(void\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -258,7 +258,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_void_star'\n"
+    send_gdb "print &dm_type_void_star\n"
     gdb_expect {
 	-re ".*dm_type_void_star\\(void \\*\\).*\r\n$gdb_prompt $" {
 	    # v2 demangler
@@ -277,7 +277,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_short'\n"
+    send_gdb "print &dm_type_short\n"
     gdb_expect {
 	-re ".*dm_type_short\\(short\\).*\r\n$gdb_prompt $" {
 	    # v2 and v3 demanglers
@@ -296,7 +296,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_unsigned_short'\n"
+    send_gdb "print &dm_type_unsigned_short\n"
     gdb_expect {
 	-re ".*dm_type_unsigned_short\\(unsigned short\\).*\r\n$gdb_prompt $" {
 	    # v2 and v3 demanglers
@@ -315,7 +315,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_long'\n"
+    send_gdb "print &dm_type_long\n"
     gdb_expect {
 	-re ".*dm_type_long\\(long\\).*\r\n$gdb_prompt $" {
 	    # v2 and v3 demanglers
@@ -334,7 +334,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_unsigned_long'\n"
+    send_gdb "print &dm_type_unsigned_long\n"
     gdb_expect {
 	-re ".*dm_type_unsigned_long\\(unsigned long\\).*\r\n$gdb_prompt $" {
 	    # v2 and v3 demanglers
@@ -353,7 +353,7 @@ proc probe_demangler { } {
 	}
     }
 
-    send_gdb "print &'dm_type_typedef'\n"
+    send_gdb "print &dm_type_typedef\n"
     gdb_expect {
 	-re ".*dm_type_typedef\\(int\\).*\r\n$gdb_prompt $" {
 	    # v2 and v3 demanglers
@@ -447,19 +447,19 @@ proc print_addr_2_kfail { name good bad bugid } {
     set good_pattern [string_to_regexp $good]
     set bad_pattern [string_to_regexp $bad]
 
-    send_gdb "print &'$name'\n"
+    send_gdb "print &$name\n"
     gdb_expect {
 	-re ".* = .* $hex <$good_pattern>\r\n$gdb_prompt $" {
-	    pass "print &'$name'"
+	    pass "print &$name"
 	}
 	-re ".* = .* $hex <$bad_pattern>\r\n$gdb_prompt $" {
-	    kfail $bugid "print &'$name'"
+	    kfail $bugid "print &$name"
 	}
 	-re ".*$gdb_prompt $" {
-	    fail "print &'$name'"
+	    fail "print &$name"
 	}
 	timeout {
-	    fail "print &'$name' (timeout)"
+	    fail "print &$name (timeout)"
 	}
     }
 }


hooks/post-receive
--
Repository for Project Archer.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-11-11  0:42 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-11  0:42 [SCM] archer-keiths-expr-cumulative: Remove more single quotes kseitz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).