Fix regression in default.exp caused by _caller_is, etc.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / argv0-symlink.exp
CommitLineData
ecd75fc8 1# Copyright 2013-2014 Free Software Foundation, Inc.
1f0c4988
JK
2
3# This program is free software; you can redistribute it and/or modify
4# it under the terms of the GNU General Public License as published by
5# the Free Software Foundation; either version 3 of the License, or
6# (at your option) any later version.
7#
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY; without even the implied warranty of
10# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11# GNU General Public License for more details.
12#
13# You should have received a copy of the GNU General Public License
14# along with this program. If not, see <http://www.gnu.org/licenses/>.
15
16standard_testfile
17
18if { [build_executable ${testfile}.exp ${testfile} ${srcfile}] == -1 } {
19 return -1
20}
21
22set test "kept file symbolic link name"
23set filelink "${testfile}-filelink"
24
25remote_file host delete [standard_output_file $filelink]
26set status [remote_exec host "ln -sf ${testfile} [standard_output_file $filelink]"]
27if {[lindex $status 0] != 0} {
28 unsupported "$test (host does not support symbolic links)"
29 return 0
30}
31
32clean_restart "$filelink"
33
34if ![runto_main] {
35 untested "could not run to main"
36 return -1
37}
38
218c2655
JK
39gdb_test_no_output "set print repeats 10000"
40gdb_test_no_output "set print elements 10000"
41
1f0c4988 42gdb_test {print argv[0]} "/$filelink\"" $test
24890efd
TT
43
44# For a link named /PATH/TO/DIR/LINK, we want to check the output
45# against "/DIR/LINK", but computed in a way that doesn't make
46# assumptions about the test directory layout.
47set full_filelink [standard_output_file $filelink]
48set lastdir [file tail [file dirname $full_filelink]]
49
50gdb_test "info inferiors" "/$lastdir/$filelink *" "$test for info inferiors"
1f0c4988
JK
51
52
53set test "kept directory symbolic link name"
54set dirlink "${testfile}-dirlink"
55
56# 'ln -sf' does not overwrite symbol link to a directory.
57# 'remote_file host delete' uses stat (not lstat), therefore it refuses to
58# delete a directory.
59remote_exec host "rm -f [standard_output_file $dirlink]"
60set status [remote_exec host "ln -sf . [standard_output_file $dirlink]"]
61if {[lindex $status 0] != 0} {
62 unsupported "$test (host does not support symbolic links)"
63 return 0
64}
65
66clean_restart "$dirlink/$filelink"
67
68if ![runto_main] {
69 untested "could not run to main"
70 return -1
71}
72
218c2655
JK
73gdb_test_no_output "set print repeats 10000"
74gdb_test_no_output "set print elements 10000"
75
4856b6bc
JK
76# gdbserver does not have this issue.
77if ![is_remote target] {
78 setup_kfail "*-*-*" gdb/15934
79}
1f0c4988 80gdb_test {print argv[0]} "/$dirlink/$filelink\"" $test
24890efd 81gdb_test "info inferiors" "/$lastdir/$filelink *" "$test for info inferiors"
This page took 0.143969 seconds and 4 git commands to generate.