2012-01-16 Pedro Alves <palves@redhat.com>
[external/binutils.git] / gdb / testsuite / gdb.ada / cond_lang.exp
1 # Copyright 2010-2012 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 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 load_lib "ada.exp"
17
18 set testdir "cond_lang"
19 set testfile "${testdir}/a"
20 set cfile "${testdir}/foo"
21 set adasrcfile ${srcdir}/${subdir}/${testfile}.adb
22 set csrcfile ${srcdir}/${subdir}/${cfile}.c
23 set cobject  ${objdir}/${subdir}/${cfile}.o
24 set binfile ${objdir}/${subdir}/${testfile}
25
26 file mkdir ${objdir}/${subdir}/${testdir}
27 gdb_compile "${csrcfile}" "${cobject}" object [list debug]
28 if {[gdb_compile_ada "${adasrcfile}" "${binfile}" executable [list debug]] != "" } {
29   return -1
30 }
31
32 clean_restart ${testfile}
33
34 # Run to c_function an verify that the language automatically gets set to C.
35 runto c_function
36 gdb_test "show lang" \
37          "The current source language is \"auto; currently c\"\\."
38
39 # Now, insert a breakpoint inside an Ada unit, using a condition written
40 # in Ada. Even though the current language is "auto; currently c", we
41 # expect the debugger to parse the expression using Ada, because the
42 # current language mode is auto, and the breakpoint is inside Ada code.
43 set bp_location [gdb_get_line_number "STOP" ${testdir}/mixed.adb]
44 gdb_test "break mixed.adb:${bp_location} if light = green" \
45          "Breakpoint \[0-9\]* at .*: file .*/mixed.adb, line \[0-9\]*\\."
46
47 # Now, continue until we hit the breakpoint.  If the condition is
48 # evaluated correctly, the first hit will be ignored, and the debugger
49 # will stop at the second hit only, when the "light" argument is equal
50 # to green.
51 gdb_test "continue" \
52          "Breakpoint \[0-9\]*, mixed\\.break_me \\(light=green\\) at .*"
53
54