Add support to skip import libraries for performance reasons and instead
[binutils-gdb.git] / gdb / testsuite / gdb.chill / misc.exp
1 # OBSOLETE # Copyright 1995, 1996, 1997 Free Software Foundation, Inc.
2 # OBSOLETE
3 # OBSOLETE # This program is free software; you can redistribute it and/or modify
4 # OBSOLETE # it under the terms of the GNU General Public License as published by
5 # OBSOLETE # the Free Software Foundation; either version 2 of the License, or
6 # OBSOLETE # (at your option) any later version.
7 # OBSOLETE #
8 # OBSOLETE # This program is distributed in the hope that it will be useful,
9 # OBSOLETE # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # OBSOLETE # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # OBSOLETE # GNU General Public License for more details.
12 # OBSOLETE #
13 # OBSOLETE # You should have received a copy of the GNU General Public License
14 # OBSOLETE # along with this program; if not, write to the Free Software
15 # OBSOLETE # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 # OBSOLETE
17 # OBSOLETE # Please email any bugs, comments, and/or additions to this file to:
18 # OBSOLETE # bug-gdb@prep.ai.mit.edu
19 # OBSOLETE
20 # OBSOLETE # This file was written by Fred Fish. (fnf@cygnus.com)
21 # OBSOLETE # Martin Pottendorfer (pottendo@aut.alcatel.at)
22 # OBSOLETE #
23 # OBSOLETE
24 # OBSOLETE if $tracelevel then {
25 # OBSOLETE strace $tracelevel
26 # OBSOLETE }
27 # OBSOLETE
28 # OBSOLETE if [skip_chill_tests] then { continue }
29 # OBSOLETE
30 # OBSOLETE set testfile "misc"
31 # OBSOLETE set srcfile ${srcdir}/$subdir/${testfile}.ch
32 # OBSOLETE set binfile ${objdir}/${subdir}/${testfile}.exe
33 # OBSOLETE if { [compile "${srcfile} -g -o ${binfile} ${CHILL_RT0} ${CHILL_LIB}"] != "" } {
34 # OBSOLETE perror "Couldn't compile ${srcfile}"
35 # OBSOLETE return -1
36 # OBSOLETE }
37 # OBSOLETE
38 # OBSOLETE # Set the current language to chill. This counts as a test. If it
39 # OBSOLETE # fails, then we skip the other tests.
40 # OBSOLETE
41 # OBSOLETE proc set_lang_chill {} {
42 # OBSOLETE global gdb_prompt
43 # OBSOLETE global binfile objdir subdir
44 # OBSOLETE
45 # OBSOLETE verbose "loading file '$binfile'"
46 # OBSOLETE gdb_load $binfile
47 # OBSOLETE
48 # OBSOLETE send_gdb "set language chill\n"
49 # OBSOLETE gdb_expect {
50 # OBSOLETE -re ".*$gdb_prompt $" {}
51 # OBSOLETE timeout { fail "set language chill (timeout)" ; return 0 }
52 # OBSOLETE }
53 # OBSOLETE
54 # OBSOLETE return [gdb_test "show language" ".* source language is \"chill\".*" \
55 # OBSOLETE "set language to \"chill\""]
56 # OBSOLETE }
57 # OBSOLETE
58 # OBSOLETE set prms_id 0
59 # OBSOLETE set bug_id 0
60 # OBSOLETE
61 # OBSOLETE # Start with a fresh gdb.
62 # OBSOLETE
63 # OBSOLETE gdb_exit
64 # OBSOLETE gdb_start
65 # OBSOLETE gdb_reinitialize_dir $srcdir/$subdir
66 # OBSOLETE
67 # OBSOLETE gdb_test "set print sevenbit-strings" ".*"
68 # OBSOLETE
69 # OBSOLETE if ![set_lang_chill] then {
70 # OBSOLETE runto dummyfunc
71 # OBSOLETE # check upper/lower case
72 # OBSOLETE gdb_test "ptype BOOL" " = (bool|BOOL)"
73 # OBSOLETE gdb_test "ptype bool" " = (bool|BOOL)"
74 # OBSOLETE gdb_test "print otto" " = 42"
75 # OBSOLETE gdb_test "print OTTO" " = 42"
76 # OBSOLETE gdb_test "print otTO" " = 42"
77 # OBSOLETE gdb_test "print OTto" " = 42"
78 # OBSOLETE gdb_test "print NULL" " = NULL" "print emptiness literal"
79 # OBSOLETE
80 # OBSOLETE # This tests PR 8496.
81 # OBSOLETE gdb_test {printf "%d %d.", 3+4,2} "7 2." "printf with 2 arguments"
82 # OBSOLETE
83 # OBSOLETE # This tests GCH/924
84 # OBSOLETE gdb_test {print (h'23)} { = 35} "print parantised integer literal"
85 # OBSOLETE
86 # OBSOLETE # Linux thinks this is at line 6, but is otherwise ok.
87 # OBSOLETE setup_xfail "i*86-pc-linux*-gnu"
88 # OBSOLETE gdb_test "info line" \
89 # OBSOLETE {Line 7 of .*misc.ch.* at address H'[0-9a-fA-F]+.*}\
90 # OBSOLETE "info about current line"
91 # OBSOLETE
92 # OBSOLETE # check array () type (expr)
93 # OBSOLETE setup_xfail "m68*-*-hpux*"
94 # OBSOLETE gdb_test "print array () ubyte (foo)" { = \[\(0:11\): 0\]}
95 # OBSOLETE
96 # OBSOLETE send_gdb "set var \$i := foo\n"
97 # OBSOLETE gdb_expect -re ".*$gdb_prompt $"
98 # OBSOLETE setup_xfail "m68*-*-hpux*"
99 # OBSOLETE gdb_test "print/x array () byte (\$i)" { = \[\(0:11\): H'0\]}
100 # OBSOLETE }