]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/testsuite/gdb.chill/gch1280.exp
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / gch1280.exp
CommitLineData
fa5864d5 1# Copyright (C) 1995, 1997 Free Software Foundation, Inc.
9811b596
WM
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
fa5864d5 15# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
9811b596
WM
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 "gch1280"
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 {} {
85fbaa74 41 global gdb_prompt
9811b596
WM
42 global binfile objdir subdir
43
44 verbose "loading file '$binfile'"
45 gdb_load $binfile
46
787f6220 47 send_gdb "set language chill\n"
40ac1624 48 gdb_expect {
85fbaa74 49 -re ".*$gdb_prompt $" {}
9811b596
WM
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
398e180a 66gdb_test "set print sevenbit-strings" ".*"
9811b596
WM
67
68if ![set_lang_chill] then {
69 runto doit
0424a094 70 gdb_test "next" ""
9811b596
WM
71 # check too many array elements
72 gdb_test {set var v_x := [1,2,3,4,5]} {Too many array elements}
7cdda733 73 gdb_test {set var $i := m_x[(3): 22, 25]} {Too many array elements}
8e88a522 74 gdb_test "set var \$i := m_x\[\(2\): 22, 25\]" ""
7cdda733 75 gdb_test {print $i} { = \[\(1\): 0, \(2\): 22, \(3\): 25\]}
9811b596 76}