PR exp/11926
[external/binutils.git] / gdb / testsuite / gdb.objc / print.exp
1 # This testcase is part of GDB, the GNU debugger.
2
3 # Copyright 2010 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 # Please email any bugs, comments, and/or additions to this file to:
19 # bug-gdb@gnu.org
20
21 # Test printing of various values.
22 # NOTE: The tests here intentionally do not require an objc compiler.
23
24 if $tracelevel {
25     strace $tracelevel
26 }
27
28 load_lib "objc.exp"
29
30 proc test_float_accepted {} {
31     # Test parsing of fp value with legit text following.
32     gdb_test "p 1234.5+1" " = 1235.5" "check fp + text"
33
34     # Test all the suffixes (including no suffix).
35     gdb_test "p 1." " = 1"
36     gdb_test "p 1.5" " = 1.5"
37     setup_kfail gdb/11925 "*-*-*"
38     gdb_test "p 1.f" " = 1"
39     setup_kfail gdb/11925 "*-*-*"
40     gdb_test "p 1.5f" " = 1.5"
41     setup_kfail gdb/11925 "*-*-*"
42     gdb_test "p 1.l" " = 1"
43     setup_kfail gdb/11925 "*-*-*"
44     gdb_test "p 1.5l" " = 1.5"
45 }
46
47 proc test_float_rejected {} {
48     # Test invalid fp values.
49     test_print_reject "p 0x1.1"
50
51     # Test bad suffixes.
52     test_print_reject "p 1.1x"
53     test_print_reject "p 1.1ff"
54     test_print_reject "p 1.1ll"
55 }
56
57 # Start with a fresh gdb.
58
59 gdb_exit
60 gdb_start
61 gdb_reinitialize_dir $srcdir/$subdir
62
63 if [set_lang_objc] {
64     test_float_accepted
65     test_float_rejected
66 } else {
67     warning "Objective-c print tests suppressed"
68 }