Home | History | Annotate | Line # | Download | only in gdb.xml
tdesc-arch.exp revision 1.1
      1 # Copyright 2007-2014 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 3 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, see <http://www.gnu.org/licenses/>.
     15 
     16 if {[gdb_skip_xml_test]} {
     17     unsupported "tdesc-arch.exp"
     18     return -1
     19 }
     20 
     21 gdb_start
     22 
     23 # Find some valid architectures - we just need legitimate values
     24 # to put in our <architecture> elements.
     25 set arch1 ""
     26 set arch2 ""
     27 set msg "read valid architectures"
     28 gdb_test_multiple "set architecture" $msg {
     29     -re "Requires an argument. Valid arguments are (\[^ \]*), (\[^ \]*), .*auto\\.\r\n$gdb_prompt $" {
     30 	set arch1 $expect_out(1,string)
     31 	set arch2 $expect_out(2,string)
     32 	pass $msg
     33     }
     34     -re "Requires an argument. Valid arguments are (\[^ \]*), auto\\.\r\n$gdb_prompt $" {
     35 	# If there is just one supported architecture, we can't do this test.
     36 	unsupported "tdesc-arch.exp"
     37 	return -1
     38     }
     39 }
     40 
     41 set default_arch ""
     42 set msg "read default architecture"
     43 gdb_test_multiple "show architecture" $msg {
     44     -re "The target architecture is set automatically \\(currently (\[^ \]*)\\)\r\n$gdb_prompt $" {
     45 	set default_arch $expect_out(1,string)
     46 	pass $msg
     47     }
     48 }
     49 
     50 # If that did not work, no point running further tests.
     51 if { "$arch1" == "" || "$arch2" == "" || "$default_arch" == "" } {
     52     unresolved "architecture XML tests"
     53     return -1
     54 }
     55 
     56 # Run these tests twice, once for $arch1 and once for $arch2, to
     57 # make sure that the tdesc file overrides the global default.
     58 
     59 proc set_arch { arch which } {
     60     global gdb_prompt
     61     global subdir
     62 
     63     set filename [standard_output_file tdesc-arch.xml]
     64     set fd [open $filename w]
     65     puts $fd \
     66 	"<target>
     67 	    <architecture>$arch</architecture>
     68 	 </target>"
     69     close $fd
     70     if {[is_remote host]} {
     71 	set filename [remote_download host $filename tdesc-arch.xml]
     72     }
     73 
     74     # Anchor the test output, so that error messages are detected.
     75     set cmd "set tdesc filename $filename"
     76     set msg "set tdesc filename tdesc-arch.xml ($which architecture)"
     77     set cmd_regex [string_to_regexp $cmd]
     78     gdb_test_multiple $cmd $msg {
     79 	-re "^$cmd_regex\r\n$gdb_prompt $" {
     80 	    pass $msg
     81 	}
     82 	-re "^$cmd_regex\r\nwarning: A handler for the OS ABI.*\r\n$gdb_prompt $" {
     83 	    kfail gdb/2225 $msg
     84 	}
     85     }
     86 
     87     set cmd "show architecture"
     88     gdb_test $cmd \
     89 	"The target architecture is set automatically \\(currently $arch\\)" \
     90 	"$cmd ($which architecture)"
     91 
     92     remote_file host delete $filename
     93 }
     94 
     95 set_arch $arch1 first
     96 set_arch $arch2 second
     97 
     98 # Check an invalid architecture setting.
     99 set filename [standard_output_file tdesc-arch.xml]
    100 set fd [open $filename w]
    101 puts $fd \
    102     "<target>
    103        <architecture>invalid</architecture>
    104      </target>"
    105 close $fd
    106 if {[is_remote host]} {
    107     set filename [remote_download host $filename "tdesc-arch.xml"]
    108 }
    109 
    110 set cmd "set tdesc filename $filename"
    111 gdb_test $cmd \
    112     "warning:.*Target description specified unknown architecture.*" \
    113     "set tdesc filename tdesc-arch.xml (invalid architecture)"
    114 
    115 set cmd "show architecture"
    116 gdb_test $cmd \
    117     "The target architecture is set automatically \\(currently $default_arch\\)" \
    118     "$cmd (invalid architecture)"
    119 
    120 remote_file host delete $filename
    121