public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v2 1/4] [gdb/testsuite] Add gdb.testsuite/gdb-caching-proc.exp
@ 2023-03-04  9:35 Tom de Vries
  2023-03-04  9:35 ` [PATCH v2 2/4] [gdb/testsuite] Use regular proc syntax for gdb_caching_proc Tom de Vries
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Tom de Vries @ 2023-03-04  9:35 UTC (permalink / raw)
  To: gdb-patches

Add test-case gdb.testsuite/gdb-caching-proc.exp that excercises
gdb_caching_proc.

Tested on x86_64-linux.
---
 .../gdb.testsuite/gdb-caching-proc.exp        | 38 +++++++++++++++++++
 1 file changed, 38 insertions(+)
 create mode 100644 gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp

diff --git a/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp b/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp
new file mode 100644
index 00000000000..de35c046185
--- /dev/null
+++ b/gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp
@@ -0,0 +1,38 @@
+# Copyright 2023 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/>.
+
+gdb_caching_proc gdb_testsuite_gdb_caching_proc_exp_noarg {
+    incr ::count
+    return 1
+}
+
+set assertions {
+    { [gdb_testsuite_gdb_caching_proc_exp_noarg] == 1 }
+}
+
+set assertion_nr 0
+foreach assertion $assertions {
+    with_test_prefix $assertion_nr {
+	set ::count 0
+
+	gdb_assert $assertion
+	gdb_assert { $::count == 1 }
+
+	with_test_prefix cached {
+	    gdb_assert $assertion
+	    gdb_assert { $::count == 1 }
+	}
+    }
+    incr assertion_nr
+}

base-commit: 9c2c346137eeca000840023b6d9340274da7a905
-- 
2.35.3


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2023-03-06 15:45 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-04  9:35 [PATCH v2 1/4] [gdb/testsuite] Add gdb.testsuite/gdb-caching-proc.exp Tom de Vries
2023-03-04  9:35 ` [PATCH v2 2/4] [gdb/testsuite] Use regular proc syntax for gdb_caching_proc Tom de Vries
2023-03-06 14:20   ` Tom Tromey
2023-03-04  9:35 ` [PATCH v2 3/4] [gdb/testsuite] Allow args in gdb_caching_proc Tom de Vries
2023-03-06 14:23   ` Tom Tromey
2023-03-04  9:35 ` [PATCH v2 4/4] [gdb/testsuite] Move gdb.base/gdb-caching-proc.exp to gdb.testsuite Tom de Vries
2023-03-06 14:48   ` Tom Tromey
2023-03-06 15:45     ` Tom de Vries
2023-03-06 14:47 ` [PATCH v2 1/4] [gdb/testsuite] Add gdb.testsuite/gdb-caching-proc.exp Tom Tromey

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).