Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Keith Seitz <keiths@redhat.com>
To: "gdb-patches@sourceware.org ml" <gdb-patches@sourceware.org>
Subject: [RFA] completer test [was Re: [RFC] Cleanup for make_source_files_completion_list]
Date: Wed, 15 May 2013 19:32:00 -0000	[thread overview]
Message-ID: <5193E2DC.5000200@redhat.com> (raw)
In-Reply-To: <5193C786.4000207@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 609 bytes --]

On 05/15/2013 10:36 AM, Keith Seitz wrote:
> $ cat same.c
> int
> same (int a)
> {
>     return a;
> }
>
> int
> main (void)
> {
>    return same (0);
> }
> $ gcc -g same.c -o same
> $ gdb -q same
> (gdb) b same.\t\t
> [blah blah blah]
> c
> same
> (gdb)
>
> Compare this with unpatched gdb:
> (gdb) b same.\t\t
> [blah blah blah]
> same.c
> same
>
> So this needs to stay put. I'll see if I can generate a test case for this.

And here is the test case.

Keith

testsuite/ChangeLog
2013-05-15  Keith Seitz  <keiths@redhat.com>

	* gdb.base/filesym.exp: New completer test.
	* gdb.base/filesym.c: New file.



[-- Attachment #2: completer-test.patch --]
[-- Type: text/x-patch, Size: 2804 bytes --]

diff --git a/gdb/testsuite/gdb.base/filesym.c b/gdb/testsuite/gdb.base/filesym.c
new file mode 100644
index 0000000..11b3b25
--- /dev/null
+++ b/gdb/testsuite/gdb.base/filesym.c
@@ -0,0 +1,28 @@
+/* This testcase is part of GDB, the GNU debugger.
+
+   Copyright 2013 Free Software Foundation, Inc.
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 3 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
+
+int
+filesym (int arg)
+{
+  return arg;
+}
+
+int
+main (void)
+{
+  return filesym (0);
+}
diff --git a/gdb/testsuite/gdb.base/filesym.exp b/gdb/testsuite/gdb.base/filesym.exp
new file mode 100644
index 0000000..c9e9c20
--- /dev/null
+++ b/gdb/testsuite/gdb.base/filesym.exp
@@ -0,0 +1,50 @@
+# Copyright 2013 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+# This series of completion tests checks the completion output
+# on a name which is potentially both a symbol name and a file name.
+
+standard_testfile
+
+if {[prepare_for_testing $testfile.exp $testfile $srcfile debug]} {
+    return -1
+}
+
+# Test completion list for "filesy".  We expect the immediate result to
+# complete to "filesym"; completing again, we expect the symbol name and the
+# filename (in that order).
+
+send_gdb "break filesy\t"
+gdb_expect {
+     -re "m\$" {
+	pass "complete on \"filesy\""
+
+	# Now ask for the completion list
+	send_gdb "\t\t"
+	gdb_expect {
+	    -re ".*filesym\[ \t\]+filesym.c.*$gdb_prompt break filesym\$" {
+		pass "completion list for \"filesym\""
+	    }
+
+	    default {
+		fail "completion list for \"filesym\""
+	    }
+	}
+    }
+
+    default {
+	fail "complete on \"filesy\""
+    }
+}

  reply	other threads:[~2013-05-15 19:32 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-05-07 19:46 [RFC] Cleanup for make_source_files_completion_list Keith Seitz
2013-05-09 20:58 ` Tom Tromey
2013-05-09 23:45 ` Doug Evans
2013-05-13 18:42   ` Keith Seitz
2013-05-13 21:11     ` Keith Seitz
2013-05-15 17:36       ` Keith Seitz
2013-05-15 19:32         ` Keith Seitz [this message]
2013-05-15 20:01           ` [RFA] completer test [was Re: [RFC] Cleanup for make_source_files_completion_list] Tom Tromey
2013-05-15 21:22             ` Keith Seitz
2013-05-15 22:33           ` Sergio Durigan Junior
2013-05-15 23:47             ` Keith Seitz
2013-05-16  0:21               ` Sergio Durigan Junior
2013-05-16  0:27               ` Stan Shebs
2013-05-16  9:38                 ` Pedro Alves
2013-05-16  5:30               ` Joel Brobecker
2013-05-16  5:49                 ` Joel Brobecker
2013-05-16 15:41                   ` Keith Seitz
2013-05-17  5:14                     ` Joel Brobecker
2013-05-17 16:27                       ` Tom Tromey
2013-05-20  5:28                         ` Joel Brobecker
2013-05-20 14:47                           ` Tom Tromey
2013-05-21  5:43                             ` Checked in: " Joel Brobecker
2013-05-21  5:44                               ` Joel Brobecker
2013-05-16  5:53                 ` Sergio Durigan Junior
2013-05-16  6:00                   ` Joel Brobecker
2013-05-16  9:19               ` Pedro Alves
2013-05-16  9:26                 ` Joel Brobecker
2013-05-16 10:18                   ` Pedro Alves

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=5193E2DC.5000200@redhat.com \
    --to=keiths@redhat.com \
    --cc=gdb-patches@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox