[gdb/syscalls] Sync with strace v6.13
[binutils-gdb.git] / gdb / testsuite / gdb.base / subst.exp
blobb1e352d29114bfe307cba62965e5361d2a0b711f
1 # Copyright 2006-2024 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 clean_restart
18 # Do a bunch of testing of the set/unset/show substitute-path
19 # commands that do not require the presence of an executable.
21 gdb_test_no_output "set confirm off" \
22          "deactivate GDB's confirmation interface"
24 # Clear any substitution rules that are available by default due
25 # to GDB being configured with --with-relocated-sources.
27 gdb_test_no_output "unset substitute-path" \
28          "remove default substitution rules"
30 gdb_test "show substitute-path" \
31          "List of all source path substitution rules:" \
32          "show substitute-path, no rule entered yet"
34 gdb_test "show substitute-path from" \
35          "Source path substitution rule matching `from':" \
36          "show substitute-path from, no rule entered yet"
38 gdb_test "show substitute-path too many" \
39          "Too many arguments in command" \
40          "show substitute-path, too many arguments"
42 gdb_test "unset substitute-path from" \
43          "No substitution rule defined for `from'" \
44          "unset substitute-path from, no rule entered yet"
46 gdb_test_no_output "unset substitute-path" \
47          "unset substitute-path, no rule entered yet"
49 gdb_test "unset substitute-path from" \
50          "No substitution rule defined for `from'" \
51          "unset substitute-path from, after unset substitute-path"
53 gdb_test "unset substitute-path from to" \
54          "Incorrect usage, too many arguments in command" \
55          "unset substitute-path, too many arguments"
57 gdb_test "set substitute-path too many arguments" \
58          "Incorrect usage, too many arguments in command" \
59          "set substitute-path, too many arguments"
61 gdb_test "set substitute-path missing" \
62          "Incorrect usage, too few arguments in command" \
63          "set substitute-path, too few arguments"
65 gdb_test "set substitute-path '' to" \
66          "First argument must be at least one character long" \
67          "set substitute-path, first argument is empty string"
69 gdb_test_no_output "set substitute-path from to" \
70          "add from -> to substitution rule"
72 gdb_test_no_output "set substitute-path from1 to1/" \
73          "add from1 -> to1 substitution rule"
75 gdb_test_no_output "set substitute-path source destination" \
76          "add source -> destination substitution rule"
78 gdb_test_no_output "set substitute-path depuis/ vers" \
79          "add depuis -> vers substitution rule"
81 gdb_test_no_output "set substitute-path empty ''" \
82          "add substitution rule to empty string"
84 gdb_test "show substitute-path" \
85          "List of all source path substitution rules:\r\n +`from' -> `to'.\r\n +`from1' -> `to1'.\r\n +`source' -> `destination'.\r\n\ +`depuis' -> `vers'.\r\n +`empty' -> `'." \
86          "show substitute-path after all paths added"
88 gdb_test "show substitute-path from" \
89          "Source path substitution rule matching `from':\r\n +`from' -> `to'." \
90          "show substitute-path from, after all paths added"
92 gdb_test "show substitute-path depuis" \
93          "Source path substitution rule matching `depuis':\r\n +`depuis' -> `vers'." \
94          "show substitute-path depuis, after all paths added"
96 gdb_test "show substitute-path from/path" \
97          "Source path substitution rule matching `from/path':\r\n +`from' -> `to'." \
98          "show substitute-path from/path, after all paths added"
100 gdb_test "show substitute-path from_a_bad_path" \
101          "Source path substitution rule matching `from_a_bad_path':" \
102          "show substitute-path from_a_bad_path, after all paths added"
104 gdb_test "show substitute-path garbage" \
105          "Source path substitution rule matching `garbage':" \
106          "show substitute-path garbage, after all paths added"
108 gdb_test_no_output "unset substitute-path from" \
109          "unset substitute-path from"
111 gdb_test "show substitute-path from" \
112          "Source path substitution rule matching `from':" \
113          "show substitute-path from, after unsetting it"
115 gdb_test "show substitute-path" \
116          "List of all source path substitution rules:\r\n +`from1' -> `to1'.\r\n +`source' -> `destination'.\r\n\ +`depuis' -> `vers'.\r\n +`empty' -> `'." \
117          "show substitute-path after from rule removed"
119 gdb_test "unset substitute-path from" \
120          "No substitution rule defined for `from'" \
121          "unset substitute-path from after the rule was removed"
123 gdb_test_no_output "unset substitute-path depuis" \
124          "unset substitute-path depuis (middle of list)"
126 gdb_test "show substitute-path" \
127          "List of all source path substitution rules:\r\n +`from1' -> `to1'.\r\n +`source' -> `destination'.\r\n\ +`empty' -> `'." \
128          "show substitute-path after depuis rule removed"
130 gdb_test_no_output "unset substitute-path empty" \
131          "unset substitute-path empty (end of list)"
133 gdb_test "show substitute-path" \
134          "List of all source path substitution rules:\r\n +`from1' -> `to1'.\r\n +`source' -> `destination'." \
135          "show substitute-path after empty rule removed"
137 gdb_test_no_output "unset substitute-path" \
138          "remove all remaining substitution rules"
140 gdb_test "show substitute-path" \
141          "List of all source path substitution rules:" \
142          "show substitute-path after all remaining rules removed"