blob: 33952e4bd7696c0874aaa0f14788bdcd2bf1a178 (
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
|
# Copyright 2003-2025 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/>.
# This is a test for the gdb invocation option --args.
# Skip test if target does not support argument passing.
require {!target_info exists noargs}
# This test requires starting new inferior processes, skip it if the target
# board is a stub.
require !use_gdb_stub
standard_testfile
if {[build_executable $testfile.exp $testfile $srcfile] == -1} {
untested "failed to compile"
return -1
}
# NAME is the name to use for the tests and ARGLIST is the list of
# arguments that are passed to GDB when it is started.
#
# The optional RE_LIST is the list of patterns to check the arguments
# against, these patterns should match ARGLIST. If the arguments are
# expected to show up unmodified in the test output then RE_LIST can
# be dropped, and this proc will reuse ARGLIST.
proc args_test { name arglist {re_list {}} } {
# If RE_LIST is not supplied then we can reuse ARGLIST, this
# implies that the arguments will appear unmodified in the test
# output.
if {[llength $re_list] == 0} {
set re_list $arglist
}
foreach_with_prefix startup_with_shell { on off } {
save_vars { ::GDBFLAGS } {
set ::GDBFLAGS "$::GDBFLAGS --args $::binfile $arglist"
clean_restart $::binfile
gdb_test_no_output "set startup-with-shell ${startup_with_shell}" \
"set startup-with-shell for $name"
runto_main
gdb_breakpoint [gdb_get_line_number "set breakpoint here"]
gdb_continue_to_breakpoint "breakpoint for $name"
set expected_len [expr 1 + [llength $re_list]]
gdb_test "print argc" "\\\$$::decimal = $expected_len" "argc for $name"
set i 1
foreach arg $re_list {
gdb_test "print argv\[$i\]" "\\\$$::decimal = $::hex \"$arg\"" \
"argv\[$i\] for $name"
set i [expr $i + 1]
}
}
}
}
# Test that the --args are processed correctly.
args_test basic {{1} {3}}
# Test that the --args are processed correctly even if one of them is
# empty.
args_test "one empty" {{1} {} {3}}
# Try with 2 empty args.
args_test "two empty" {{1} {} {} 3}
# Try with arguments containing literal single quotes.
args_test "one empty with single quotes" {{1} {''} {3}}
args_test "two empty with single quotes" {{1} {''} {''} {3}}
# Try with arguments containing literal newlines.
args_test "one newline" {{1} "\n" {3}} {1 \\\\n 3}
args_test "two newlines" {{1} "\n" "\n" {3}} {1 \\\\n \\\\n 3}
args_test "lone single quote" {{1} \' {3}}
args_test "lone double quote" {{1} \" {3}} {1 \\\\\" 3}
|