* language.c: Include jv-lang.h.
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.java / jv-exp.exp
1 # Copyright (C) 2000 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 if $tracelevel then {
21 strace $tracelevel
22 }
23
24 set prms_id 0
25 set bug_id 0
26
27 # Set the current language to Java. This counts as a test. If it
28 # fails, then we skip the other tests.
29
30 proc set_lang_java {} {
31 global gdb_prompt
32
33 if [gdb_test "set language java" "" "set language java"] {
34 return 0
35 }
36
37 if [gdb_test "show language" ".* source language is \"java\".*"] {
38 return 0
39 }
40 return 1;
41 }
42
43 proc test_comparisons {} {
44 global gdb_prompt
45
46 # Test various comparisons.
47
48 gdb_test "p 1 > 2" " = false"
49 gdb_test "p 1 < 2" " = true"
50 }
51
52 # Start with a fresh gdb.
53
54 gdb_exit
55 gdb_start
56 gdb_reinitialize_dir $srcdir/$subdir
57
58 gdb_test "set print sevenbit-strings" ""
59 gdb_test "set print address off" "" ""
60 gdb_test "set width 0" ""
61
62 if [set_lang_java] then {
63 test_comparisons
64 } else {
65 fail "Java expression tests suppressed"
66 }
This page took 0.056774 seconds and 4 git commands to generate.