1# Copyright 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 20if $tracelevel then { 21 strace $tracelevel 22} 23 24set prms_id 0 25set 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 30proc 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 43proc 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 54gdb_exit 55gdb_start 56gdb_reinitialize_dir $srcdir/$subdir 57 58gdb_test "set print sevenbit-strings" "" 59gdb_test "set print address off" "" "" 60gdb_test "set width 0" "" 61 62if [set_lang_java] then { 63 test_comparisons 64} else { 65 fail "Java expression tests suppressed" 66} 67