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