import gdb-1999-06-28 snapshot
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.chill / enum.exp
CommitLineData
c906108c
SS
1# Copyright (C) 1995, 1997 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
20# This file was written by Wilfried Moser (moser@aut.alcatel.at
21#
22
23if $tracelevel then {
24 strace $tracelevel
25}
26
27if [skip_chill_tests] then { continue }
28
29set testfile "enum"
30set srcfile ${srcdir}/$subdir/${testfile}.ch
31set binfile ${objdir}/${subdir}/${testfile}.exe
32if { [compile "${srcfile} -g -o ${binfile} ${CHILL_RT0} ${CHILL_LIB}"] != "" } {
33 perror "Couldn't compile ${srcfile}"
34 return -1
35}
36
37# Set the current language to chill. This counts as a test. If it
38# fails, then we skip the other tests.
39
40proc set_lang_chill {} {
41 global gdb_prompt
42 global binfile objdir subdir
43
44 verbose "loading file '$binfile'"
45 gdb_load $binfile
46
47 send_gdb "set language chill\n"
48 gdb_expect {
49 -re ".*$gdb_prompt $" {}
50 timeout { fail "set language chill (timeout)" ; return 0 }
51 }
52
53 return [gdb_test "show language" ".* source language is \"chill\".*" \
54 "set language to \"chill\""]
55}
56
57set prms_id 0
58set bug_id 0
59
60# Start with a fresh gdb.
61
62gdb_exit
63gdb_start
64gdb_reinitialize_dir $srcdir/$subdir
65
66gdb_test "set print sevenbit-strings" ".*"
67
68if ![set_lang_chill] then {
69 runto hugo_
70
71 send_gdb "set var \$i := d\n"
72 gdb_expect -re ".*$gdb_prompt $"
73 gdb_test "print \$i" { = d}
74 gdb_test "print size (\$i)" { = 1}
75 gdb_test "print b+c" { = 3}
76 gdb_test "print c*d" { = 6}
77 gdb_test "print a<b" { = TRUE}
78 gdb_test "print a=b" { = FALSE}
79 gdb_test "print a=a" { = TRUE}
80 gdb_test "print a/=\$i" { = TRUE}
81
82# This is PR 8870
83 gdb_test "break malloc" ".*"
84 gdb_test {set var $j := m_set[b]} ".*invalid.*tuple.*"
85}
This page took 0.030015 seconds and 4 git commands to generate.