OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [testsuite/] [gdb.chill/] [enum.exp] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 106 markom
# 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 "enum"
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 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
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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.