aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.btrace/cpu.exp
blob: a3f7317915bf2261f5aeae1b707f016647e342fd (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
# This testcase is part of GDB, the GNU debugger.
#
# Copyright 2018-2020 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_start

proc test_good { arg } {
    gdb_test_no_output "set record btrace cpu $arg" "set cpu $arg"
    gdb_test "show record btrace cpu" "btrace cpu is '$arg'\." \
        "show cpu $arg"
}

proc test_bad { arg current } {
    gdb_test "set record btrace cpu $arg" \
        "Bad format\.  See \"help set record btrace cpu\"\." \
        "set cpu $arg"
    gdb_test "show record btrace cpu" "btrace cpu is '$current'\." \
        "show cpu $arg"
}

proc test_junk { arg junk current } {
    gdb_test "set record btrace cpu $arg" \
        "Trailing junk: '$junk'\." \
        "set cpu $arg"
    gdb_test "show record btrace cpu" "btrace cpu is '$current'\." \
        "show cpu $arg"
}

gdb_test "show record btrace cpu" "btrace cpu is 'auto'\." "default cpu"

gdb_test "set record" \
    "List of set record subcommands.*"
gdb_test "set record btrace" \
    "List of set record btrace subcommands.*"
test_bad "" "auto"

test_good "intel: 0/0"
test_good "intel: 0/0/1"

# We omit a zero stepping in the output.
gdb_test_no_output "set record btrace cpu intel: 0/0/0" \
    "set cpu intel: 0/0/0"
gdb_test "show record btrace cpu" "btrace cpu is 'intel: 0/0'\." \
    "show cpu intel: 0/0/0"

test_good "auto"
test_good "none"

test_bad "intel: foo" "none"
test_bad "intel: 0" "none"
test_bad "intel: 0/" "none"
test_bad "intel: 0/foo" "none"
test_bad "intel: foo/bar" "none"
test_bad "intel: foo/0" "none"
test_bad "intel: 0x0/0" "none"

test_junk "intel: 0/0 foo" " foo" "none"
test_junk "intel: 0/0x0" "x0" "none"
test_junk "intel: 0/0/foo" "/foo" "none"
test_junk "intel: 0/0/0 foo" " foo" "none"
test_junk "intel: 0/0/0x0" "x0" "none"