diff options
author | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-03-06 16:49:19 +0100 |
commit | b24a386d75a769d2362e9f9261a2efb023a88a82 (patch) | |
tree | 066b7cad9f839462dbcd8c0dfd6ce80d751733a6 /gdb | |
parent | 68ca7890ddaeb849c390295ecd914087da463497 (diff) | |
download | gdb-b24a386d75a769d2362e9f9261a2efb023a88a82.zip gdb-b24a386d75a769d2362e9f9261a2efb023a88a82.tar.gz gdb-b24a386d75a769d2362e9f9261a2efb023a88a82.tar.bz2 |
[gdb/testsuite] Add gdb.testsuite/gdb-caching-proc.exp
Add test-case gdb.testsuite/gdb-caching-proc.exp that excercises
gdb_caching_proc.
Tested on x86_64-linux.
Reviewed-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/gdb.testsuite/gdb-caching-proc.exp | 38 |
1 files changed, 38 insertions, 0 deletions
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 0000000..de35c04 --- /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 +} |