]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.mi/mi-file.exp
Adding -file-list-exec-source-file command to MI
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.mi / mi-file.exp
CommitLineData
1abaf70c
BR
1# Copyright 1999 Free Software Foundation, Inc.
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 2 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, write to the Free Software
15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16
17# Please email any bugs, comments, and/or additions to this file to:
18# bug-gdb@prep.ai.mit.edu
19
20#
21# Test essential Machine interface (MI) operations
22#
23# Verify that, using the MI, we can run a simple program and perform basic
24# debugging activities like: insert breakpoints, run the program,
25# step, next, continue until it ends and, last but not least, quit.
26#
27# The goal is not to test gdb functionality, which is done by other tests,
28# but to verify the correct output response to MI operations.
29#
30
31load_lib mi-support.exp
32set MIFLAGS "-i=mi"
33
34gdb_exit
35if [mi_gdb_start] {
36 continue
37}
38
39set testfile "basics"
40set srcfile ${testfile}.c
41set binfile ${objdir}/${subdir}/${testfile}
42if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug additional_flags=-DFAKEARGV}] != "" } {
43 gdb_suppress_entire_file "Testcase compile failed, so all tests in this file will automatically fail."
44}
45
46mi_delete_breakpoints
47mi_gdb_reinitialize_dir $srcdir/$subdir
48mi_gdb_load ${binfile}
49
50proc test_tbreak_creation_and_listing {} {
51 global srcfile
52 global srcdir
53 global subdir
54 set srcfilepath [string_to_regexp ${srcdir}/${subdir}/${srcfile}]
55
56 # get the path and absolute path to the current executable
57 mi_gdb_test "111-file-list-exec-source-file" \
58 "111\\\^done,line=\"23\",file=\"${srcfilepath}\",fullname=\"/.*/${srcfile}\"" \
59 "request path info of current source file (${srcfile})"
60}
61
62test_tbreak_creation_and_listing
63
64mi_gdb_exit
65return 0