]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-file.exp
run copyright.sh for 2011.
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-file.exp
CommitLineData
7b6bb8da 1# Copyright 1999, 2003, 2004, 2007, 2008, 2009, 2010, 2011
4c38e0a4 2# Free Software Foundation, Inc.
1abaf70c
BR
3
4# This program is free software; you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
e22f8b7c 6# the Free Software Foundation; either version 3 of the License, or
1abaf70c 7# (at your option) any later version.
e22f8b7c 8#
1abaf70c
BR
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
e22f8b7c 13#
1abaf70c 14# You should have received a copy of the GNU General Public License
e22f8b7c 15# along with this program. If not, see <http://www.gnu.org/licenses/>.
1abaf70c 16
1abaf70c
BR
17#
18# Test essential Machine interface (MI) operations
19#
20# Verify that, using the MI, we can run a simple program and perform basic
21# debugging activities like: insert breakpoints, run the program,
22# step, next, continue until it ends and, last but not least, quit.
23#
24# The goal is not to test gdb functionality, which is done by other tests,
25# but to verify the correct output response to MI operations.
26#
27
28load_lib mi-support.exp
29set MIFLAGS "-i=mi"
30
31gdb_exit
32if [mi_gdb_start] {
33 continue
34}
35
36set testfile "basics"
37set srcfile ${testfile}.c
3788363d 38set binfile ${objdir}/${subdir}/mi-file
1abaf70c 39if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
b60f0898
JB
40 untested mi-file.exp
41 return -1
1abaf70c
BR
42}
43
44mi_delete_breakpoints
45mi_gdb_reinitialize_dir $srcdir/$subdir
2b70e4c6 46mi_gdb_file_cmd ${binfile}
1abaf70c 47
bcc82369 48proc test_file_list_exec_source_file {} {
1abaf70c
BR
49 global srcfile
50 global srcdir
51 global subdir
6006a3a1 52 global fullname_syntax
1abaf70c
BR
53 set srcfilepath [string_to_regexp ${srcdir}/${subdir}/${srcfile}]
54
55 # get the path and absolute path to the current executable
45f07fef
MC
56 #
57 # In gdb 6.2 (at least), the default line number is set by
58 # select_source_symtab to the first line of "main" minus
59 # the value of "lines_to_list" (which defaults to 10) plus one.
60 # --chastain 2004-08-13
61
62 set line_main_head [gdb_get_line_number "main ("]
63 set line_main_body [expr $line_main_head + 2]
64 set gdb_lines_to_list 10
65 set line_default [expr $line_main_body - $gdb_lines_to_list + 1]
66
1abaf70c 67 mi_gdb_test "111-file-list-exec-source-file" \
f43691e3 68 "111\\\^done,line=\"$line_default\",file=\"${srcfilepath}\",fullname=\"$fullname_syntax${srcfile}\",macro-info=\"0\"" \
1abaf70c
BR
69 "request path info of current source file (${srcfile})"
70}
71
bcc82369
BR
72proc test_file_list_exec_source_files {} {
73 global srcfile
6006a3a1 74 global fullname_syntax
bcc82369
BR
75
76 # get the path and absolute path to the current executable
77 mi_gdb_test "222-file-list-exec-source-files" \
cd269619 78 "222\\\^done,files=\\\[\{file=\".*/${srcfile}\",fullname=\"$fullname_syntax${srcfile}\"\}.*]" \
bcc82369
BR
79 "Getting a list of source files."
80}
81
82test_file_list_exec_source_file
83test_file_list_exec_source_files
1abaf70c
BR
84
85mi_gdb_exit
86return 0