]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.base/bad-file.exp
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.base / bad-file.exp
CommitLineData
61baf725 1# Copyright 2016-2017 Free Software Foundation, Inc.
a55411b9
DE
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
16# Test passing bad files to gdb. PR symtab/17911
17
85c10f77
DE
18# Note: While we test for specific text in error messages,
19# thus perhaps making the test host specific, if your host
20# print different text then the plan is to update the expected text
21# instead of making this test linux-only or some such.
a55411b9
DE
22
23# There is no such file, but we still use the normal mechanism to pick
24# its name and path.
25standard_testfile
26
27gdb_exit
28gdb_start
29
30set test "non-existent file"
31set bad_file $testfile
32remote_file host delete $bad_file
33gdb_test_multiple "file $bad_file" "$test" {
34 -re "No such file or directory.\[\r\n\]+$gdb_prompt $" {
35 pass $test
36 }
37}
38
39set test "directory"
40set bad_file [standard_output_file {}]
41remote_exec host "mkdir -p $bad_file"
42gdb_test_multiple "file $bad_file" "$test" {
43 -re "Is a directory.\[\r\n\]+$gdb_prompt $" {
44 pass $test
45 }
46}
47
48set test "neither file nor directory"
49set bad_file "/dev/null"
50gdb_test_multiple "file $bad_file" "$test" {
51 -re "Invalid argument.\[\r\n\]+$gdb_prompt $" {
52 pass $test
53 }
54}