Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: gdb/testsuite/gdb.linespec/skip-two.exp

Issue 124383005: GDB 7.6.50 (Closed) Base URL: http://git.chromium.org/native_client/nacl-gdb.git@upstream
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gdb/testsuite/gdb.linespec/macro-relative.exp ('k') | gdb/testsuite/gdb.linespec/thread.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gdb/testsuite/gdb.linespec/skip-two.exp
diff --git a/gdb/testsuite/gdb.linespec/skip-two.exp b/gdb/testsuite/gdb.linespec/skip-two.exp
new file mode 100644
index 0000000000000000000000000000000000000000..3413388621a197035e9668bc0bab745963e8706c
--- /dev/null
+++ b/gdb/testsuite/gdb.linespec/skip-two.exp
@@ -0,0 +1,84 @@
+# Copyright 2012-2013 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 ${testfile}.exp
+ return
+}
+
+if {[prepare_for_testing ${testfile}.exp $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
+ }
+}
« no previous file with comments | « gdb/testsuite/gdb.linespec/macro-relative.exp ('k') | gdb/testsuite/gdb.linespec/thread.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698