1 # Copyright (C) 2014-2023 Free Software Foundation, Inc.
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 3 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 # This file is part of the GDB testsuite.
17 # It tests basic gsmob features.
19 load_lib gdb-guile.exp
21 # Start with a fresh gdb.
25 # Skip all tests if Guile scripting is not enabled.
26 if { [skip_guile_tests] } { continue }
28 gdb_reinitialize_dir $srcdir/$subdir
30 gdb_install_guile_utils
31 gdb_install_guile_module
33 # Test the transition from alist to htab in the property list.
34 # N.B. This has the same value as gdb/guile/scm-gsmob.c.
35 set SMOB_PROP_HTAB_THRESHOLD 7
37 gdb_test_no_output "gu (define arch (current-arch))"
39 # Return a property name for integer I suitable for sorting.
41 proc prop_name { i } {
42 return [format "prop%02d" $i]
45 # Set and ref the properties in separate loops to verify previously set
46 # properties are not lost when we set a new property or switch to htabs.
47 for {set i 0} {$i <= $SMOB_PROP_HTAB_THRESHOLD} {incr i} {
48 gdb_test "gu (print (object-property arch '[prop_name $i]))" \
49 "= #f" "property prop$i not present before set"
50 gdb_test "gu (print (set-object-property! arch '[prop_name $i] $i))" \
52 gdb_test "gu (print (object-property arch '[prop_name $i]))" \
53 "= $i" "property prop$i present after set"
55 for {set i 0} {$i <= $SMOB_PROP_HTAB_THRESHOLD} {incr i} {
56 gdb_test "gu (print (object-property arch '[prop_name $i]))" \
62 for {set i 0} {$i <= $SMOB_PROP_HTAB_THRESHOLD} {incr i} {
63 set prop_list "$prop_list [prop_name $i]"
65 set prop_list [lsort $prop_list]
66 verbose -log "prop_list: $prop_list"
67 gdb_test "gu (print (sort (map car (object-properties arch)) (lambda (a b) (string<? (symbol->string a) (symbol->string b)))))" \
68 "= \\($prop_list\\)" "object-properties"
70 # Check that smob classes are exported properly
71 with_test_prefix "test exports" {
72 # Import (oop goops) for is-a? and <class>
73 gdb_scm_test_silent_cmd "gu (use-modules (oop goops))" "import goops"
74 gdb_test_no_output "gu (define-syntax-rule (gdb-exports-class? x) (is-a? (@ (gdb) x) <class>))"
76 gdb_test "gu (print (gdb-exports-class? <gdb:arch>))" "= #t"
77 gdb_test "gu (print (gdb-exports-class? <gdb:block>))" "= #t"
78 gdb_test "gu (print (gdb-exports-class? <gdb:block-symbols-iterator>))" "= #t"
79 gdb_test "gu (print (gdb-exports-class? <gdb:breakpoint>))" "= #t"
80 gdb_test "gu (print (gdb-exports-class? <gdb:command>))" "= #t"
81 gdb_test "gu (print (gdb-exports-class? <gdb:exception>))" "= #t"
82 gdb_test "gu (print (gdb-exports-class? <gdb:frame>))" "= #t"
83 gdb_test "gu (print (gdb-exports-class? <gdb:iterator>))" "= #t"
84 gdb_test "gu (print (gdb-exports-class? <gdb:lazy-string>))" "= #t"
85 gdb_test "gu (print (gdb-exports-class? <gdb:objfile>))" "= #t"
86 gdb_test "gu (print (gdb-exports-class? <gdb:parameter>))" "= #t"
87 gdb_test "gu (print (gdb-exports-class? <gdb:pretty-printer>))" "= #t"
88 gdb_test "gu (print (gdb-exports-class? <gdb:pretty-printer-worker>))" "= #t"
89 gdb_test "gu (print (gdb-exports-class? <gdb:progspace>))" "= #t"
90 gdb_test "gu (print (gdb-exports-class? <gdb:symbol>))" "= #t"
91 gdb_test "gu (print (gdb-exports-class? <gdb:symtab>))" "= #t"
92 gdb_test "gu (print (gdb-exports-class? <gdb:sal>))" "= #t"
93 gdb_test "gu (print (gdb-exports-class? <gdb:type>))" "= #t"
94 gdb_test "gu (print (gdb-exports-class? <gdb:field>))" "= #t"
95 gdb_test "gu (print (gdb-exports-class? <gdb:value>))" "= #t"