]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gdb/testsuite/gdb.chill/gch1280.exp
Initial creation of sourceware repository
[thirdparty/binutils-gdb.git] / gdb / testsuite / gdb.chill / gch1280.exp
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
23 if $tracelevel then {
24 strace $tracelevel
25 }
26
27 if [skip_chill_tests] then { continue }
28
29 set testfile "gch1280"
30 set srcfile ${srcdir}/$subdir/${testfile}.ch
31 set binfile ${objdir}/${subdir}/${testfile}.exe
32 if { [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
40 proc 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
57 set prms_id 0
58 set bug_id 0
59
60 # Start with a fresh gdb.
61
62 gdb_exit
63 gdb_start
64 gdb_reinitialize_dir $srcdir/$subdir
65
66 gdb_test "set print sevenbit-strings" ".*"
67
68 if ![set_lang_chill] then {
69 runto doit
70 gdb_test "next" ""
71 # check too many array elements
72 gdb_test {set var v_x := [1,2,3,4,5]} {Too many array elements}
73 gdb_test {set var $i := m_x[(3): 22, 25]} {Too many array elements}
74 gdb_test "set var \$i := m_x\[\(2\): 22, 25\]" ""
75 gdb_test {print $i} { = \[\(1\): 0, \(2\): 22, \(3\): 25\]}
76 }