1 # Copyright (C) 1993-2019 Free Software Foundation, Inc.
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.
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.
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., 51 Franklin Street - Fifth Floor, Boston,
18 # Please email any bugs, comments, and/or additions to this file to:
21 # This file was written by Ken Raeburn (raeburn@cygnus.com).
23 proc load_common_lib { name } {
25 load_file $srcdir/../../binutils/testsuite/lib/$name
28 load_common_lib binutils-common.exp
32 if [is_remote host] then {
33 remote_exec host "$AS -version < /dev/null" "" "" "gas.version"
34 remote_exec host "which $AS" "" "" "gas.which"
36 remote_upload host "gas.version"
37 remote_upload host "gas.which"
39 set which_as [file_contents "gas.which"]
40 set tmp [file_contents "gas.version"]
42 remote_file build delete "gas.version"
43 remote_file build delete "gas.which"
44 remote_file host delete "gas.version"
45 remote_file host delete "gas.which"
47 set which_as [which $AS]
48 catch "exec $AS -version < /dev/null" tmp
51 # Should find a way to discard constant parts, keep whatever's
52 # left, so the version string could be almost anything at all...
53 regexp "\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number
54 if ![info exists number] then {
55 return "$which_as (no version number)\n"
57 clone_output "$which_as $number\n"
61 proc gas_host_run { cmd redir } {
62 verbose "Executing $cmd $redir"
63 set return_contents_of ""
64 if [regexp ">& */dev/null" $redir] then {
66 set command "$cmd $redir"
67 } elseif [regexp "> */dev/null" $redir] then {
69 set command "$cmd 2>gas.stderr"
70 set return_contents_of "gas.stderr"
71 } elseif [regexp ">&.*" $redir] then {
72 # See PR 5322 for why the following line is used.
73 regsub ">&" $redir "" output_file
74 set command "$cmd 2>&1"
75 } elseif [regexp "2>.*" $redir] then {
76 set output_file "gas.out"
77 set command "$cmd $redir"
78 set return_contents_of "gas.out"
79 } elseif [regexp ">.*" $redir] then {
81 set command "$cmd $redir 2>gas.stderr"
82 set return_contents_of "gas.stderr"
83 } elseif { "$redir" == "" } then {
84 set output_file "gas.out"
85 set command "$cmd 2>&1"
86 set return_contents_of "gas.out"
88 fail "gas_host_run: unknown form of redirection string"
91 set status [remote_exec host [concat sh -c [list $command]] "" "/dev/null" "$output_file"]
93 if { "$return_contents_of" != "" } then {
94 remote_upload host "$return_contents_of"
95 set to_return [file_contents "$return_contents_of"]
96 regsub "\n$" $to_return "" to_return
99 if { [lindex $status 0] == 0 && "$output_file" != ""
100 && "$output_file" != "$return_contents_of" } then {
101 remote_upload host "$output_file"
104 return [list [lindex $status 0] "$to_return"]
107 proc gas_run { prog as_opts redir } {
115 set status [gas_host_run "$AS $ASFLAGS $as_opts $srcdir/$subdir/$prog" "$redir"]
116 set comp_output [lindex $status 1]
117 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then {
118 append comp_output "child process exited abnormally"
120 set comp_output [prune_warnings $comp_output]
121 verbose "output was $comp_output"
122 return [list $comp_output ""]
125 proc gas_run_stdin { prog as_opts redir } {
133 set status [gas_host_run "$AS $ASFLAGS $as_opts < $srcdir/$subdir/$prog" "$redir"]
134 set comp_output [lindex $status 1]
135 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then {
136 append comp_output "child process exited abnormally"
138 set comp_output [prune_warnings $comp_output]
139 verbose "output was $comp_output"
140 return [list $comp_output ""]
143 proc all_ones { args } {
144 foreach x $args { if [expr $x!=1] { return 0 } }
148 # ${tool}_finish (gas_finish) will be called by runtest.exp. But
149 # gas_finish should only be used with gas_start. We use gas_started
150 # to tell gas_finish if gas_start has been called so that runtest.exp
151 # can call gas_finish without closing the wrong fd.
154 proc gas_start { prog as_opts } {
164 verbose -log "Starting $AS $ASFLAGS $as_opts $prog" 2
165 set status [gas_host_run "$AS $ASFLAGS $as_opts $srcdir/$subdir/$prog" ">&gas.out"]
166 spawn -noecho -nottycopy cat gas.out
169 proc gas_finish { } {
173 if { $gas_started == 1 } {
180 proc want_no_output { testname } {
183 if ![string match "" $comp_output] then {
184 send_log "$comp_output\n"
185 verbose "$comp_output" 3
187 if [string match "" $comp_output] then {
196 proc gas_test_old { file as_opts testname } {
197 gas_run $file $as_opts ""
198 return [want_no_output $testname]
201 proc gas_test { file as_opts var_opts testname } {
205 foreach word $var_opts {
206 set ignore_stdout($i) [string match "*>" $word]
207 set opt($i) [string trim $word {>}]
211 for {set i 0} {[expr $i<$max]} {incr i} {
212 set maybe_ignore_stdout ""
214 for {set bit 0} {(1<<$bit)<$max} {incr bit} {
215 set num [expr 1<<$bit]
216 if [expr $i&$num] then {
217 set extra_opts "$extra_opts $opt($bit)"
218 if $ignore_stdout($bit) then {
219 set maybe_ignore_stdout ">/dev/null"
223 set extra_opts [string trim $extra_opts]
224 gas_run $file "$as_opts $extra_opts" $maybe_ignore_stdout
226 # Should I be able to use a conditional expression here?
227 if [string match "" $extra_opts] then {
228 want_no_output $testname
230 want_no_output "$testname ($extra_opts)"
233 if [info exists errorInfo] then {
238 proc gas_test_ignore_stdout { file as_opts testname } {
241 gas_run $file $as_opts ">/dev/null"
242 want_no_output $testname
245 proc gas_test_error { file as_opts testname } {
248 gas_run $file $as_opts ">/dev/null"
249 send_log "$comp_output\n"
250 verbose "$comp_output" 3
251 if { ![string match "" $comp_output]
252 && ![string match "*Assertion failure*" $comp_output]
253 && ![string match "*Internal error*" $comp_output] } then {
262 proc gas_init { args } {
264 global target_cpu_family
270 case "$target_cpu" in {
271 "m68???" { set target_cpu_family m68k }
272 "i[3-7]86" { set target_cpu_family i386 }
273 default { set target_cpu_family $target_cpu }
276 set target_family "$target_cpu_family-$target_vendor-$target_os"
279 if ![istarget "*-*-*"] {
280 perror "Target name [istarget] is not a triple."
282 # Need to return an empty string.
286 # run_dump_tests TESTCASES EXTRA_OPTIONS
287 # Wrapper for run_dump_test, which is suitable for invoking as
288 # run_dump_tests [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
289 # EXTRA_OPTIONS are passed down to run_dump_test. Honors runtest_file_p.
290 # Body cribbed from dg-runtest.
292 proc run_dump_tests { testcases {extra_options {}} } {
295 foreach testcase $testcases {
296 # If testing specific files and this isn't one of them, skip it.
297 if ![runtest_file_p $runtests $testcase] {
300 run_dump_test [file rootname [file tail $testcase]] $extra_options
304 proc objdump { opts } {
309 set status [gas_host_run "$OBJDUMP $opts" ""]
310 set comp_output [prune_warnings [lindex $status 1]]
311 verbose "objdump output=$comp_output\n" 3
314 proc objdump_start_no_subdir { prog opts } {
319 verbose "Starting $OBJDUMP $opts $prog" 2
320 set status [gas_host_run "$OBJDUMP $opts $prog" ">&gas.out"]
321 spawn -noecho -nottycopy cat gas.out
324 proc objdump_finish { } {
331 # Default timeout is 10 seconds, loses on a slow machine. But some
332 # configurations of dejagnu may override it.
333 if {$timeout<120} then { set timeout 120 }
336 timeout { perror "timeout" }
337 "virtual memory exhausted" { perror "virtual memory exhausted" }
338 buffer_full { perror "buffer full" }
342 proc file_contents { filename } {
343 set file [open $filename r]
344 set contents [read $file]
349 proc write_file { filename contents } {
350 set file [open $filename w]
351 puts $file "$contents"
355 proc verbose_eval { expr { level 1 } } {
357 if $verbose>$level then { eval verbose "$expr" $level }
360 # This definition is taken from an unreleased version of DejaGnu. Once
361 # that version gets released, and has been out in the world for a few
362 # months at least, it may be safe to delete this copy.
363 if ![string length [info proc prune_warnings]] {
365 # prune_warnings -- delete various system verbosities from TEXT.
368 # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
370 # Sites with particular verbose os's may wish to override this in site.exp.
372 proc prune_warnings { text } {
373 # This is from sun4's. Do it for all machines for now.
374 # The "\\1" is to try to preserve a "\n" but only if necessary.
375 regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
377 # It might be tempting to get carried away and delete blank lines, etc.
378 # Just delete *exactly* what we're ask to, and that's it.
383 # run_list_test NAME (optional): OPTS TESTNAME
385 # Assemble the file "NAME.s" with command line options OPTS and
386 # compare the assembler standard error output against the regular
387 # expressions given in the file "NAME.l". If TESTNAME is provided,
388 # it will be used as the name of the test.
390 proc run_list_test { name {opts {}} {testname {}} } {
392 if { [string length $testname] == 0 } then {
393 set testname "[file tail $subdir] $name"
395 set file $srcdir/$subdir/$name
396 gas_run ${name}.s $opts ">&dump.out"
397 if { [regexp_diff "dump.out" "${file}.l"] } then {
399 verbose "output is [file_contents "dump.out"]" 2
405 # run_list_test_stdin NAME (optional): OPTS TESTNAME
407 # Similar to run_list_test, but use stdin as input.
409 proc run_list_test_stdin { name {opts {}} {testname {}} } {
411 if { [string length $testname] == 0 } then {
412 set testname "[file tail $subdir] $name"
414 set file $srcdir/$subdir/$name
415 gas_run_stdin ${name}.s $opts ">&dump.out"
416 if { [regexp_diff "dump.out" "${file}.l"] } then {
418 verbose "output is [file_contents "dump.out"]" 2