No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gdb6 / gdb / testsuite / gdb.java / jv-exp.exp
blob1ee9bd33975ee57a8e20302169ddee782ca5e28b
1 # Copyright 2000 Free Software Foundation, Inc.
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.
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.
17 # Please email any bugs, comments, and/or additions to this file to:
18 # bug-gdb@prep.ai.mit.edu
20 if $tracelevel then {
21 strace $tracelevel
24 set prms_id 0
25 set bug_id 0
27 # Set the current language to Java. This counts as a test. If it
28 # fails, then we skip the other tests.
30 proc set_lang_java {} {
31 global gdb_prompt
33 if [gdb_test "set language java" "" "set language java"] {
34 return 0
37 if [gdb_test "show language" ".* source language is \"java\".*"] {
38 return 0
40 return 1;
43 proc test_comparisons {} {
44 global gdb_prompt
46 # Test various comparisons.
48 gdb_test "p 1 > 2" " = false"
49 gdb_test "p 1 < 2" " = true"
52 # Start with a fresh gdb.
54 gdb_exit
55 gdb_start
56 gdb_reinitialize_dir $srcdir/$subdir
58 gdb_test "set print sevenbit-strings" ""
59 gdb_test "set print address off" "" ""
60 gdb_test "set width 0" ""
62 if [set_lang_java] then {
63 test_comparisons
64 } else {
65 fail "Java expression tests suppressed"