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.
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
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
{} {
33 if [gdb_test
"set language java" "" "set language java"] {
37 if [gdb_test
"show language" ".* source language is \"java\".*"] {
43 proc test_comparisons
{} {
46 # Test various comparisons.
48 gdb_test
"p 1 > 2" " = false"
49 gdb_test
"p 1 < 2" " = true"
52 # Start with a fresh gdb.
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 {
65 fail
"Java expression tests suppressed"