summaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.linespec/skip-two.exp
blob: 544e9b9077e87822327f9f4afbb1aae31073bdd5 (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
# Copyright 2012-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/>.

standard_testfile lspec.cc

set execfile $testfile

set baseone base/one/thefile.cc
set basetwo base/two/thefile.cc

if {[skip_cplus_tests]} {
    unsupported "skipping C++ tests"
    return
}

if {[prepare_for_testing "failed to prepare" $execfile \
	 [list $srcfile $baseone $basetwo] \
	 {debug nowarnings c++}]} {
    return -1
}

gdb_test "skip function dupname" \
	 {Function dupname will be skipped when stepping\.}

if ![runto_main] {
    return -1
}

set test "dupname ignored from main"
gdb_test_multiple "step" $test {
    -re "^step\r\ndupname .*\r\n$gdb_prompt $" {
	fail $test
    }
    -re "^step\r\nm .*\r\n$gdb_prompt $" {
	pass $test
    }
}

gdb_breakpoint "n"
gdb_continue_to_breakpoint "n" ".* dupname.* thefile breakpoint .*"

set test "dupname ignored from n"
gdb_test_multiple "step" $test {
    -re "^step\r\ndupname .*\r\n$gdb_prompt $" {
	fail $test
    }
    -re "^step\r\n\[^\r\n\]* after dupname .*\r\n$gdb_prompt $" {
	pass $test
    }
}

gdb_test_no_output "skip delete 1"

gdb_test "skip file thefile.cc" \
	 {File thefile\.cc will be skipped when stepping\.}

if ![runto_main] {
    return -1
}

gdb_test "step" "static int dupname .*" "step into dupname"
gdb_test "finish" "return dupname.* body_elsewhere.*" "finish from dupname"

set test "dupname ignored for thefile.cc"
gdb_test_multiple "step" $test {
    -re "^step\r\ndupname .*\r\n$gdb_prompt $" {
	fail $test
    }
    -re "^step\r\nf1 .* f1 breakpoint .*\r\n$gdb_prompt $" {
	pass $test
    }
}