OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gdb-6.8/] [pre-binutils-2.20.1-sync/] [gdb/] [testsuite/] [gdb.xml/] [tdesc-arch.exp] - Diff between revs 157 and 223

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 157 Rev 223
# Copyright 2007, 2008 Free Software Foundation, Inc.
# Copyright 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
if {[gdb_skip_xml_test]} {
if {[gdb_skip_xml_test]} {
    unsupported "tdesc-arch.exp"
    unsupported "tdesc-arch.exp"
    return -1
    return -1
}
}
gdb_start
gdb_start
# Find some valid architectures - we just need legitimate values
# Find some valid architectures - we just need legitimate values
# to put in our  elements.
# to put in our  elements.
set arch1 ""
set arch1 ""
set arch2 ""
set arch2 ""
set msg "read valid architectures"
set msg "read valid architectures"
gdb_test_multiple "set architecture" $msg {
gdb_test_multiple "set architecture" $msg {
    -re "Requires an argument. Valid arguments are (\[^ \]*), (\[^ \]*), .*auto\\.\r\n$gdb_prompt $" {
    -re "Requires an argument. Valid arguments are (\[^ \]*), (\[^ \]*), .*auto\\.\r\n$gdb_prompt $" {
        set arch1 $expect_out(1,string)
        set arch1 $expect_out(1,string)
        set arch2 $expect_out(2,string)
        set arch2 $expect_out(2,string)
        pass $msg
        pass $msg
    }
    }
    -re "Requires an argument. Valid arguments are (\[^ \]*), auto\\.\r\n$gdb_prompt $" {
    -re "Requires an argument. Valid arguments are (\[^ \]*), auto\\.\r\n$gdb_prompt $" {
        # If there is just one supported architecture, we can't do this test.
        # If there is just one supported architecture, we can't do this test.
        unsupported "tdesc-arch.exp"
        unsupported "tdesc-arch.exp"
        return -1
        return -1
    }
    }
}
}
set default_arch ""
set default_arch ""
set msg "read default architecture"
set msg "read default architecture"
gdb_test_multiple "show architecture" $msg {
gdb_test_multiple "show architecture" $msg {
    -re "The target architecture is set automatically \\(currently (\[^ \]*)\\)\r\n$gdb_prompt $" {
    -re "The target architecture is set automatically \\(currently (\[^ \]*)\\)\r\n$gdb_prompt $" {
        set default_arch $expect_out(1,string)
        set default_arch $expect_out(1,string)
        pass $msg
        pass $msg
    }
    }
}
}
# If that did not work, no point running further tests.
# If that did not work, no point running further tests.
if { "$arch1" == "" || "$arch2" == "" || "$default_arch" == "" } {
if { "$arch1" == "" || "$arch2" == "" || "$default_arch" == "" } {
    unresolved "architecture XML tests"
    unresolved "architecture XML tests"
    return -1
    return -1
}
}
# Run these tests twice, once for $arch1 and once for $arch2, to
# Run these tests twice, once for $arch1 and once for $arch2, to
# make sure that the tdesc file overrides the global default.
# make sure that the tdesc file overrides the global default.
proc set_arch { arch which } {
proc set_arch { arch which } {
    global gdb_prompt
    global gdb_prompt
    set fd [open "tdesc-arch.xml" w]
    set fd [open "tdesc-arch.xml" w]
    puts $fd \
    puts $fd \
        "
        "
            $arch
            $arch
         "
         "
    close $fd
    close $fd
    # Anchor the test output, so that error messages are detected.
    # Anchor the test output, so that error messages are detected.
    set cmd "set tdesc filename tdesc-arch.xml"
    set cmd "set tdesc filename tdesc-arch.xml"
    set msg "$cmd ($which architecture)"
    set msg "$cmd ($which architecture)"
    set cmd_regex [string_to_regexp $cmd]
    set cmd_regex [string_to_regexp $cmd]
    gdb_test_multiple $cmd $msg {
    gdb_test_multiple $cmd $msg {
        -re "^$cmd_regex\r\n$gdb_prompt $" {
        -re "^$cmd_regex\r\n$gdb_prompt $" {
            pass $msg
            pass $msg
        }
        }
        -re "^$cmd_regex\r\nwarning: A handler for the OS ABI.*\r\n$gdb_prompt $" {
        -re "^$cmd_regex\r\nwarning: A handler for the OS ABI.*\r\n$gdb_prompt $" {
            kfail gdb/2225 $msg
            kfail gdb/2225 $msg
        }
        }
    }
    }
    set cmd "show architecture"
    set cmd "show architecture"
    gdb_test $cmd \
    gdb_test $cmd \
        "The target architecture is set automatically \\(currently $arch\\)" \
        "The target architecture is set automatically \\(currently $arch\\)" \
        "$cmd ($which architecture)"
        "$cmd ($which architecture)"
    file delete "tdesc-arch.xml"
    file delete "tdesc-arch.xml"
}
}
set_arch $arch1 first
set_arch $arch1 first
set_arch $arch2 second
set_arch $arch2 second
# Check an invalid architecture setting.
# Check an invalid architecture setting.
set fd [open "tdesc-arch.xml" w]
set fd [open "tdesc-arch.xml" w]
puts $fd \
puts $fd \
    "
    "
       invalid
       invalid
     "
     "
close $fd
close $fd
set cmd "set tdesc filename tdesc-arch.xml"
set cmd "set tdesc filename tdesc-arch.xml"
gdb_test $cmd \
gdb_test $cmd \
    "warning:.*Target description specified unknown architecture.*" \
    "warning:.*Target description specified unknown architecture.*" \
    "$cmd (invalid architecture)"
    "$cmd (invalid architecture)"
set cmd "show architecture"
set cmd "show architecture"
gdb_test $cmd \
gdb_test $cmd \
    "The target architecture is set automatically \\(currently $default_arch\\)" \
    "The target architecture is set automatically \\(currently $default_arch\\)" \
    "$cmd (invalid architecture)"
    "$cmd (invalid architecture)"
file delete "tdesc-arch.xml"
file delete "tdesc-arch.xml"
 
 

powered by: WebSVN 2.1.0

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