diff options
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/symlink-sourcefile.c | 26 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/symlink-sourcefile.exp | 45 |
2 files changed, 71 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.base/symlink-sourcefile.c b/gdb/testsuite/gdb.base/symlink-sourcefile.c new file mode 100644 index 0000000..12cd968 --- /dev/null +++ b/gdb/testsuite/gdb.base/symlink-sourcefile.c @@ -0,0 +1,26 @@ +/* Copyright 2019 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/>. */ + +static int +foo (void) +{ + return 0; /* break here */ +} + +int +main (void) +{ + return foo (); +} diff --git a/gdb/testsuite/gdb.base/symlink-sourcefile.exp b/gdb/testsuite/gdb.base/symlink-sourcefile.exp new file mode 100644 index 0000000..ae43934 --- /dev/null +++ b/gdb/testsuite/gdb.base/symlink-sourcefile.exp @@ -0,0 +1,45 @@ +# Copyright 2019 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 that GDB can find the default symtab when it is a symbolic link. +standard_testfile + +set test "file symbolic link name" +set linksrc "link-${srcfile}" +set srcfilelink [standard_output_file $linksrc] + + +# Remove any existing symlink and build executable using a +# symbolic link to the actual source file. +remote_file host delete $srcfilelink +set status [remote_exec host \ + "ln -sf $srcdir/$subdir/$srcfile $srcfilelink"] +if {[lindex $status 0] != 0} { + unsupported "$test (host does not support symbolic links)" + return 0 +} + +if {[prepare_for_testing $testfile $testfile $srcfilelink]} { + return -1 +} + +if {![runto_main]} { + untested "could not run to main" + return -1 +} + +# Using a line number ensures that the default symtab is used. +gdb_breakpoint [gdb_get_line_number "break here" $srcfile] message +gdb_continue_to_breakpoint "run to breakpoint marker" |