aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/default-args.exp
blob: f5ad2d09e9db530840c1138ffb5a84af56221327 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# This testcase is part of GDB, the GNU debugger.

# Copyright 2019-2021 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/>.

# Test the "default-args" arguments and completion of alias command.

load_lib completion-support.exp

standard_testfile .c

if {[build_executable "failed to prepare" $testfile $srcfile debug]} {
    return -1
}

clean_restart $binfile

# Basic/core tests using user-visible commands.
with_test_prefix "basics" {
    # Define an alias to pretty print something.
    gdb_test "print g_s" " = {a = 1, b = 2, c = 3}" "simple print"
    gdb_test_no_output "alias PP = print -pretty --" "alias PP"
    gdb_test "help PP" "print, PP, inspect, p\r\n  alias PP = print -pretty --\r\n.*"
    gdb_test "PP g_s" \
	[multi_line  \
	     " = {" \
	     "  a = 1," \
	     "  b = 2," \
	     "  c = 3" \
	     "}"]

    # Define an alias of frame apply all with some default args.
    gdb_test_no_output "alias frame apply tout = frame apply all -past-entry -past-main" \
	"alias frame apply tout"
    gdb_test "help frame apply tout" \
	"frame apply all, frame apply tout\r\n  alias frame apply tout = frame apply all -past-entry -past-main\r\n.*"

    # Show all aliases.
    gdb_test "help aliases" \
	[multi_line  \
	     "User-defined aliases of other commands." \
	     "" \
	     "List of commands:" \
	     "" \
	     "PP -- Print value of expression EXP." \
	     "  alias PP = print -pretty --" \
	     "frame apply tout -- Apply a command to all frames." \
	     "  alias frame apply tout = frame apply all -past-entry -past-main" \
	     ".*" ] \
	"help aliases"
}

# Check errors.
with_test_prefix "errors" {
    # Try an unknown root setting.
    gdb_test "alias wrong = xxxx yyyy -someoption" \
	"Undefined command: \"xxxx\".  Try \"help\"\\."

    # Try ambiguous command.
    gdb_test "alias wrong = a" \
	"Ambiguous command \"a\":.*" "ambiguous a"
    gdb_test "alias wrong = frame a" \
	"Ambiguous frame command \"a\":.*" "ambiguous frame a"
}


# Check completion.
with_test_prefix "completion" {
    test_gdb_complete_unique \
	"alias set pri" \
	"alias set print"

    test_gdb_complete_unique \
	"alias set print items = set pri" \
	"alias set print items = set print"

    test_gdb_complete_unique \
	"alias set print items = set print ele" \
	"alias set print items = set print elements"

   test_gdb_complete_unique \
	"alias btfu = backt" \
	"alias btfu = backtrace"

   test_gdb_complete_unique \
	"alias btfu = backtrace -fu" \
	"alias btfu = backtrace -full"

   test_gdb_complete_unique \
	"alias btfu = backtrace -full -past-e" \
	"alias btfu = backtrace -full -past-entry"

    gdb_test_no_output "alias btfu = backtrace -full -past-entry" \
	"alias btfu"

}

# Check alias of alias.
with_test_prefix "alias_of_alias" {
    # Verify we can alias an alias that has no default args.
    # We allow an alias of an alias, to be backward compatible with
    # GDB 9.1 .
    gdb_test_no_output "alias aaa = backtrace"
    gdb_test_no_output "alias bbb = backtrace"

    # Verify that we cannot define an alias of an alias that has default args.
    gdb_test_no_output "alias ccc = backtrace -full"
    gdb_test "alias ddd = ccc" \
	"Cannot define an alias of an alias that has default args"

}