OSDN Git Service

Fix for PR gdb/1543.
[pf3gnuchains/pf3gnuchains4x.git] / gdb / testsuite / gdb.java / jv-exp.exp
1 # Copyright 2000, 2007, 2008 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 if $tracelevel then {
17     strace $tracelevel
18 }
19
20 set prms_id 0
21 set bug_id 0
22
23 # Set the current language to Java.  This counts as a test.  If it
24 # fails, then we skip the other tests.
25
26 proc set_lang_java {} {
27     global gdb_prompt
28
29     if [gdb_test "set language java" "" "set language java"] {
30         return 0
31     }
32
33     if [gdb_test "show language" ".* source language is \"java\".*"] {
34         return 0
35     }
36     return 1;
37 }
38
39 proc test_comparisons {} {
40     global gdb_prompt
41
42     # Test various comparisons.
43
44     gdb_test "p 1 > 2" " = false"
45     gdb_test "p 1 < 2" " = true"
46 }
47
48 # Start with a fresh gdb.
49
50 gdb_exit
51 gdb_start
52 gdb_reinitialize_dir $srcdir/$subdir
53
54 gdb_test "set print sevenbit-strings" ""
55 gdb_test "set print address off" "" ""
56 gdb_test "set width 0" ""
57
58 if [set_lang_java] then {
59     test_comparisons
60 } else {
61     fail "Java expression tests suppressed"
62 }