]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/testsuite/lib/gas-defs.exp
cb81c18fb4e34afc6b14744b0f15363a07d7f44c
[thirdparty/binutils-gdb.git] / gas / testsuite / lib / gas-defs.exp
1 # Copyright (C) 1993, 1994, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
2 # 2004, 2005, 2007, 2008, 2009, 2010, 2012 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
17 # MA 02110-1301, USA.
18
19 # Please email any bugs, comments, and/or additions to this file to:
20 # dejagnu@gnu.org
21
22 # This file was written by Ken Raeburn (raeburn@cygnus.com).
23
24 proc load_common_lib { name } {
25 global srcdir
26 load_file $srcdir/../../binutils/testsuite/lib/$name
27 }
28
29 load_common_lib binutils-common.exp
30
31 proc gas_version {} {
32 global AS
33 if [is_remote host] then {
34 remote_exec host "$AS -version < /dev/null" "" "" "gas.version"
35 remote_exec host "which $AS" "" "" "gas.which"
36
37 remote_upload host "gas.version"
38 remote_upload host "gas.which"
39
40 set which_as [file_contents "gas.which"]
41 set tmp [file_contents "gas.version"]
42
43 remote_file build delete "gas.version"
44 remote_file build delete "gas.which"
45 remote_file host delete "gas.version"
46 remote_file host delete "gas.which"
47 } else {
48 set which_as [which $AS]
49 catch "exec $AS -version < /dev/null" tmp
50 }
51
52 # Should find a way to discard constant parts, keep whatever's
53 # left, so the version string could be almost anything at all...
54 regexp "\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number
55 if ![info exists number] then {
56 return "$which_as (no version number)\n"
57 }
58 clone_output "$which_as $number\n"
59 unset version
60 }
61
62 proc gas_host_run { cmd redir } {
63 verbose "Executing $cmd $redir"
64 set return_contents_of ""
65 if [regexp ">& */dev/null" $redir] then {
66 set output_file ""
67 set command "$cmd $redir"
68 } elseif [regexp "> */dev/null" $redir] then {
69 set output_file ""
70 set command "$cmd 2>gas.stderr"
71 set return_contents_of "gas.stderr"
72 } elseif [regexp ">&.*" $redir] then {
73 # See PR 5322 for why the following line is used.
74 regsub ">&" $redir "" output_file
75 set command "$cmd 2>&1"
76 } elseif [regexp "2>.*" $redir] then {
77 set output_file "gas.out"
78 set command "$cmd $redir"
79 set return_contents_of "gas.out"
80 } elseif [regexp ">.*" $redir] then {
81 set output_file ""
82 set command "$cmd $redir 2>gas.stderr"
83 set return_contents_of "gas.stderr"
84 } elseif { "$redir" == "" } then {
85 set output_file "gas.out"
86 set command "$cmd 2>&1"
87 set return_contents_of "gas.out"
88 } else {
89 fail "gas_host_run: unknown form of redirection string"
90 }
91
92 set status [remote_exec host [concat sh -c [list $command]] "" "/dev/null" "$output_file"]
93 set to_return ""
94 if { "$return_contents_of" != "" } then {
95 remote_upload host "$return_contents_of"
96 set to_return [file_contents "$return_contents_of"]
97 regsub "\n$" $to_return "" to_return
98 }
99
100 if { [lindex $status 0] == 0 && "$output_file" != ""
101 && "$output_file" != "$return_contents_of" } then {
102 remote_upload host "$output_file"
103 }
104
105 return [list [lindex $status 0] "$to_return"]
106 }
107
108 proc gas_run { prog as_opts redir } {
109 global AS
110 global ASFLAGS
111 global comp_output
112 global srcdir
113 global subdir
114 global host_triplet
115
116 set status [gas_host_run "$AS $ASFLAGS $as_opts $srcdir/$subdir/$prog" "$redir"]
117 set comp_output [lindex $status 1]
118 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then {
119 append comp_output "child process exited abnormally"
120 }
121 set comp_output [prune_warnings $comp_output]
122 verbose "output was $comp_output"
123 return [list $comp_output ""]
124 }
125
126 proc gas_run_stdin { prog as_opts redir } {
127 global AS
128 global ASFLAGS
129 global comp_output
130 global srcdir
131 global subdir
132 global host_triplet
133
134 set status [gas_host_run "$AS $ASFLAGS $as_opts < $srcdir/$subdir/$prog" "$redir"]
135 set comp_output [lindex $status 1]
136 if { [lindex $status 0] != 0 && [regexp "2>.*" $redir] } then {
137 append comp_output "child process exited abnormally"
138 }
139 set comp_output [prune_warnings $comp_output]
140 verbose "output was $comp_output"
141 return [list $comp_output ""]
142 }
143
144 proc all_ones { args } {
145 foreach x $args { if [expr $x!=1] { return 0 } }
146 return 1
147 }
148
149 # ${tool}_finish (gas_finish) will be called by runtest.exp. But
150 # gas_finish should only be used with gas_start. We use gas_started
151 # to tell gas_finish if gas_start has been called so that runtest.exp
152 # can call gas_finish without closing the wrong fd.
153 set gas_started 0
154
155 proc gas_start { prog as_opts } {
156 global AS
157 global ASFLAGS
158 global srcdir
159 global subdir
160 global spawn_id
161 global gas_started
162
163 set gas_started 1
164
165 verbose -log "Starting $AS $ASFLAGS $as_opts $prog" 2
166 set status [gas_host_run "$AS $ASFLAGS $as_opts $srcdir/$subdir/$prog" ">&gas.out"]
167 spawn -noecho -nottycopy cat gas.out
168 }
169
170 proc gas_finish { } {
171 global spawn_id
172 global gas_started
173
174 if { $gas_started == 1 } {
175 catch "close"
176 catch "wait"
177 set gas_started 0
178 }
179 }
180
181 proc want_no_output { testname } {
182 global comp_output
183
184 if ![string match "" $comp_output] then {
185 send_log "$comp_output\n"
186 verbose "$comp_output" 3
187 }
188 if [string match "" $comp_output] then {
189 pass "$testname"
190 return 1
191 } else {
192 fail "$testname"
193 return 0
194 }
195 }
196
197 proc gas_test_old { file as_opts testname } {
198 gas_run $file $as_opts ""
199 return [want_no_output $testname]
200 }
201
202 proc gas_test { file as_opts var_opts testname } {
203 global comp_output
204
205 set i 0
206 foreach word $var_opts {
207 set ignore_stdout($i) [string match "*>" $word]
208 set opt($i) [string trim $word {>}]
209 incr i
210 }
211 set max [expr 1<<$i]
212 for {set i 0} {[expr $i<$max]} {incr i} {
213 set maybe_ignore_stdout ""
214 set extra_opts ""
215 for {set bit 0} {(1<<$bit)<$max} {incr bit} {
216 set num [expr 1<<$bit]
217 if [expr $i&$num] then {
218 set extra_opts "$extra_opts $opt($bit)"
219 if $ignore_stdout($bit) then {
220 set maybe_ignore_stdout ">/dev/null"
221 }
222 }
223 }
224 set extra_opts [string trim $extra_opts]
225 gas_run $file "$as_opts $extra_opts" $maybe_ignore_stdout
226
227 # Should I be able to use a conditional expression here?
228 if [string match "" $extra_opts] then {
229 want_no_output $testname
230 } else {
231 want_no_output "$testname ($extra_opts)"
232 }
233 }
234 if [info exists errorInfo] then {
235 unset errorInfo
236 }
237 }
238
239 proc gas_test_ignore_stdout { file as_opts testname } {
240 global comp_output
241
242 gas_run $file $as_opts ">/dev/null"
243 want_no_output $testname
244 }
245
246 proc gas_test_error { file as_opts testname } {
247 global comp_output
248
249 gas_run $file $as_opts ">/dev/null"
250 send_log "$comp_output\n"
251 verbose "$comp_output" 3
252 if { ![string match "" $comp_output]
253 && ![string match "*Assertion failure*" $comp_output]
254 && ![string match "*Internal error*" $comp_output] } then {
255 pass "$testname"
256 } else {
257 fail "$testname"
258 }
259 }
260
261 proc gas_exit {} {}
262
263 proc gas_init { args } {
264 global target_cpu
265 global target_cpu_family
266 global target_family
267 global target_vendor
268 global target_os
269 global stdoptlist
270
271 case "$target_cpu" in {
272 "m68???" { set target_cpu_family m68k }
273 "i[3-7]86" { set target_cpu_family i386 }
274 default { set target_cpu_family $target_cpu }
275 }
276
277 set target_family "$target_cpu_family-$target_vendor-$target_os"
278 set stdoptlist "-a>"
279
280 if ![istarget "*-*-*"] {
281 perror "Target name [istarget] is not a triple."
282 }
283 # Need to return an empty string.
284 return
285 }
286
287 # Internal procedure: return the names of the standard sections
288 #
289 proc get_standard_section_names {} {
290 if [istarget "rx-*-*"] {
291 return { "P" "D_1" "B_1" }
292 }
293 if [istarget "alpha*-*-*vms*"] {
294 # Double quote: for TCL and for sh.
295 return { "\\\$CODE\\\$" "\\\$DATA\\\$" "\\\$BSS\\\$" }
296 }
297 return
298 }
299
300 # run_dump_tests TESTCASES EXTRA_OPTIONS
301 # Wrapper for run_dump_test, which is suitable for invoking as
302 # run_dump_tests [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
303 # EXTRA_OPTIONS are passed down to run_dump_test. Honors runtest_file_p.
304 # Body cribbed from dg-runtest.
305
306 proc run_dump_tests { testcases {extra_options {}} } {
307 global runtests
308
309 foreach testcase $testcases {
310 # If testing specific files and this isn't one of them, skip it.
311 if ![runtest_file_p $runtests $testcase] {
312 continue
313 }
314 run_dump_test [file rootname [file tail $testcase]] $extra_options
315 }
316 }
317
318
319 # run_dump_test FILE (optional:) EXTRA_OPTIONS
320 #
321 # Assemble a .s file, then run some utility on it and check the output.
322 #
323 # There should be an assembly language file named FILE.s in the test
324 # suite directory, and a pattern file called FILE.d. `run_dump_test'
325 # will assemble FILE.s, run some tool like `objdump', `objcopy', or
326 # `nm' on the .o file to produce textual output, and then analyze that
327 # with regexps. The FILE.d file specifies what program to run, and
328 # what to expect in its output.
329 #
330 # The FILE.d file begins with zero or more option lines, which specify
331 # flags to pass to the assembler, the program to run to dump the
332 # assembler's output, and the options it wants. The option lines have
333 # the syntax:
334 #
335 # # OPTION: VALUE
336 #
337 # OPTION is the name of some option, like "name" or "objdump", and
338 # VALUE is OPTION's value. The valid options are described below.
339 # Whitespace is ignored everywhere, except within VALUE. The option
340 # list ends with the first line that doesn't match the above syntax.
341 # However, a line within the options that begins with a #, but doesn't
342 # have a recognizable option name followed by a colon, is considered a
343 # comment and entirely ignored.
344 #
345 # The optional EXTRA_OPTIONS argument to `run_dump_test' is a list of
346 # two-element lists. The first element of each is an option name, and
347 # the second additional arguments to be added on to the end of the
348 # option list as given in FILE.d. (If omitted, no additional options
349 # are added.)
350 #
351 # The interesting options are:
352 #
353 # name: TEST-NAME
354 # The name of this test, passed to DejaGNU's `pass' and `fail'
355 # commands. If omitted, this defaults to FILE, the root of the
356 # .s and .d files' names.
357 #
358 # as: FLAGS
359 # When assembling FILE.s, pass FLAGS to the assembler.
360 #
361 # addr2line: FLAGS
362 # nm: FLAGS
363 # objcopy: FLAGS
364 # objdump: FLAGS
365 # readelf: FLAGS
366 # Use the specified program to analyze the .o file, and pass it
367 # FLAGS, in addition to the .o file name. Note that they are run
368 # with LC_ALL=C in the environment to give consistent sorting
369 # of symbols. If no FLAGS are needed then use:
370 # PROG: [nm objcopy objdump readelf addr2line]
371 # instead.
372 # Note: for objdump, we automatically replaces the standard section
373 # names (.text, .data and .bss) by target ones if any (eg. rx-elf
374 # uses "P" instead of .text). The substition is done for both
375 # the objdump options (eg: "-j .text" is replaced by "-j P") and the
376 # reference file.
377 #
378 # source: SOURCE
379 # Assemble the file SOURCE.s. If omitted, this defaults to FILE.s.
380 # This is useful if several .d files want to share a .s file.
381 #
382 # dump: DUMP
383 # Match against DUMP.d. If omitted, this defaults to FILE.d. This
384 # is useful if several .d files differ by options only. Options are
385 # always read from FILE.d.
386 #
387 # target: GLOBS...
388 # Run this test only on a specified list of targets. More precisely,
389 # each glob in the space-separated list is passed to "istarget"; if
390 # it evaluates true for any of them, the test will be run, otherwise
391 # it will be marked unsupported.
392 #
393 # not-target: GLOBS...
394 # Do not run this test on a specified list of targets. Again,
395 # the each glob in the space-separated list is passed to
396 # "istarget", and the test is run if it evaluates *false* for
397 # *all* of them. Otherwise it will be marked unsupported.
398 #
399 # skip: GLOBS...
400 # not-skip: GLOBS...
401 # These are exactly the same as "not-target" and "target",
402 # respectively, except that they do nothing at all if the check
403 # fails. They should only be used in groups, to construct a single
404 # test which is run on all targets but with variant options or
405 # expected output on some targets. (For example, see
406 # gas/arm/inst.d and gas/arm/wince_inst.d.)
407 #
408 # error: REGEX
409 # An error with message matching REGEX must be emitted for the test
410 # to pass. The PROG, objdump, nm and objcopy options have no
411 # meaning and need not supplied if this is present.
412 #
413 # warning: REGEX
414 # Expect a gas warning matching REGEX. It is an error to issue
415 # both "error" and "warning".
416 #
417 # stderr: FILE
418 # FILE contains regexp lines to be matched against the diagnostic
419 # output of the assembler. This does not preclude the use of
420 # PROG, nm, objdump, or objcopy.
421 #
422 # error-output: FILE
423 # Means the same as 'stderr', but also indicates that the assembler
424 # is expected to exit unsuccessfully (therefore PROG, objdump, nm,
425 # and objcopy have no meaning and should not be supplied).
426 #
427 # section-subst: no
428 # Means that the section substitution for objdump is disabled.
429 #
430 # Each option may occur at most once.
431 #
432 # After the option lines come regexp lines. `run_dump_test' calls
433 # `regexp_diff' to compare the output of the dumping tool against the
434 # regexps in FILE.d. `regexp_diff' is defined in binutils-common.exp;
435 # see further comments there.
436
437 proc run_dump_test { name {extra_options {}} } {
438 global subdir srcdir
439 global OBJDUMP NM AS OBJCOPY READELF
440 global OBJDUMPFLAGS NMFLAGS ASFLAGS OBJCOPYFLAGS READELFFLAGS
441 global ADDR2LINE ADDR2LINEFLAGS
442 global host_triplet
443 global env
444
445 if [string match "*/*" $name] {
446 set file $name
447 set name [file tail $name]
448 } else {
449 set file "$srcdir/$subdir/$name"
450 }
451 set opt_array [slurp_options "${file}.d"]
452 if { $opt_array == -1 } {
453 perror "error reading options from $file.d"
454 unresolved $subdir/$name
455 return
456 }
457 set opts(addr2line) {}
458 set opts(as) {}
459 set opts(objdump) {}
460 set opts(nm) {}
461 set opts(objcopy) {}
462 set opts(readelf) {}
463 set opts(name) {}
464 set opts(PROG) {}
465 set opts(source) {}
466 set opts(dump) {}
467 set opts(stderr) {}
468 set opts(error) {}
469 set opts(error-output) {}
470 set opts(warning) {}
471 set opts(target) {}
472 set opts(not-target) {}
473 set opts(skip) {}
474 set opts(not-skip) {}
475 set opts(section-subst) {}
476
477 foreach i $opt_array {
478 set opt_name [lindex $i 0]
479 set opt_val [lindex $i 1]
480 if ![info exists opts($opt_name)] {
481 perror "unknown option $opt_name in file $file.d"
482 unresolved $subdir/$name
483 return
484 }
485 if [string length $opts($opt_name)] {
486 perror "option $opt_name multiply set in $file.d"
487 unresolved $subdir/$name
488 return
489 }
490 if { $opt_name == "as" } {
491 set opt_val [subst $opt_val]
492 }
493 set opts($opt_name) $opt_val
494 }
495
496 foreach i $extra_options {
497 set opt_name [lindex $i 0]
498 set opt_val [lindex $i 1]
499 if ![info exists opts($opt_name)] {
500 perror "unknown option $opt_name given in extra_opts"
501 unresolved $subdir/$name
502 return
503 }
504 # add extra option to end of existing option, adding space
505 # if necessary.
506 if [string length $opts($opt_name)] {
507 append opts($opt_name) " "
508 }
509 append opts($opt_name) $opt_val
510 }
511
512 if { $opts(name) == "" } {
513 set testname "$subdir/$name"
514 } else {
515 set testname $opts(name)
516 }
517 verbose "Testing $testname"
518
519 if { (($opts(warning) != "") && ($opts(error) != "")) \
520 || (($opts(warning) != "") && ($opts(stderr) != "")) \
521 || (($opts(error-output) != "") && ($opts(stderr) != "")) \
522 || (($opts(error-output) != "") && ($opts(error) != "")) \
523 || (($opts(error-output) != "") && ($opts(warning) != "")) } {
524 perror "$testname: bad mix of stderr, error-output, error, and warning test-directives"
525 unresolved $testname
526 return
527 }
528 if { $opts(error-output) != "" } then {
529 set opts(stderr) $opts(error-output)
530 }
531
532 set program ""
533 # It's meaningless to require an output-testing method when we
534 # expect an error.
535 if { $opts(error) == "" && $opts(error-output) == "" } {
536 if {$opts(PROG) != ""} {
537 switch -- $opts(PROG) {
538 addr2line { set program addr2line }
539 objdump { set program objdump }
540 nm { set program nm }
541 objcopy { set program objcopy }
542 readelf { set program readelf }
543 default {
544 perror "unrecognized program option $opts(PROG) in $file.d"
545 unresolved $testname
546 return }
547 }
548 } else {
549 # Guess which program to run, by seeing which option was specified.
550 foreach p {objdump objcopy nm readelf addr2line} {
551 if {$opts($p) != ""} {
552 if {$program != ""} {
553 perror "ambiguous dump program in $file.d"
554 unresolved $testname
555 return
556 } else {
557 set program $p
558 }
559 }
560 }
561 }
562 if { $program == "" && $opts(warning) == "" } {
563 perror "dump program unspecified in $file.d"
564 unresolved $testname
565 return
566 }
567 }
568
569 # Handle skipping the test on specified targets.
570 # You can have both skip/not-skip and target/not-target, but you can't
571 # have both skip and not-skip, or target and not-target, in the same file.
572 if { $opts(skip) != "" } then {
573 if { $opts(not-skip) != "" } then {
574 perror "$testname: mixing skip and not-skip directives is invalid"
575 unresolved $testname
576 return
577 }
578 foreach glob $opts(skip) {
579 if {[istarget $glob]} { return }
580 }
581 }
582 if { $opts(not-skip) != "" } then {
583 set skip 1
584 foreach glob $opts(not-skip) {
585 if {[istarget $glob]} {
586 set skip 0
587 break
588 }
589 }
590 if {$skip} { return }
591 }
592 if { $opts(target) != "" } then {
593 if { $opts(not-target) != "" } then {
594 perror "$testname: mixing target and not-target directives is invalid"
595 unresolved $testname
596 return
597 }
598 set skip 1
599 foreach glob $opts(target) {
600 if {[istarget $glob]} {
601 set skip 0
602 break
603 }
604 }
605 if {$skip} {
606 unsupported $testname
607 return
608 }
609 }
610 if { $opts(not-target) != "" } then {
611 foreach glob $opts(not-target) {
612 if {[istarget $glob]} {
613 unsupported $testname
614 return
615 }
616 }
617 }
618
619 if { [string match "*--compress-debug-sections*" $opts(as)] \
620 && ![is_zlib_supported] } {
621 unsupported $testname
622 return
623 }
624
625
626 if { $opts(source) == "" } {
627 set sourcefile ${file}.s
628 } else {
629 set sourcefile $srcdir/$subdir/$opts(source)
630 }
631
632 if { $opts(dump) == "" } {
633 set dumpfile ${file}.d
634 } else {
635 set dumpfile $srcdir/$subdir/$opts(dump)
636 }
637
638 set cmd "$AS $ASFLAGS $opts(as) -o dump.o $sourcefile"
639 send_log "$cmd\n"
640 set status [gas_host_run $cmd ""]
641 set cmdret [lindex $status 0]
642 set comp_output [prune_warnings [lindex $status 1]]
643
644 set expmsg $opts(error)
645 if { $opts(warning) != "" } {
646 set expmsg $opts(warning)
647 }
648 if { $cmdret != 0 || $comp_output != "" || $expmsg != "" } then {
649 # If the executed program writes to stderr and stderr is not
650 # redirected, exec *always* returns failure, regardless of the
651 # program exit code. Thankfully, we can retrieve the true
652 # return status from a special variable. Redirection would
653 # cause a tcl-specific message to be appended, and we'd rather
654 # not deal with that if we can help it.
655 global errorCode
656 if { $cmdret != 0 && [lindex $errorCode 0] == "NONE" } {
657 set cmdret 0
658 }
659
660 set exitstat "succeeded"
661 if { $cmdret != 0 } { set exitstat "failed" }
662
663 send_log "$comp_output\n"
664 verbose "$comp_output" 3
665 if { $opts(stderr) == "" } then {
666 if { [regexp $expmsg $comp_output] \
667 && (($cmdret == 0) == ($opts(warning) != "")) } {
668 # We have the expected output from gas.
669 # Return if there's nothing more to do.
670 if { $opts(error) != "" || $program == "" } {
671 pass $testname
672 return
673 }
674 } else {
675 verbose -log "$exitstat with: <$comp_output>, expected: <$expmsg>"
676
677 fail $testname
678 return
679 }
680 } else {
681 catch {write_file dump.stderr "$comp_output"} write_output
682 if ![string match "" $write_output] then {
683 send_log "error writing dump.stderr: $write_output\n"
684 verbose "error writing dump.stderr: $write_output" 3
685 send_log "$comp_output\n"
686 verbose "$comp_output" 3
687 fail $testname
688 return
689 }
690 set stderrfile $srcdir/$subdir/$opts(stderr)
691 verbose "wrote pruned stderr to dump.stderr" 3
692 if { [regexp_diff "dump.stderr" "$stderrfile"] } then {
693 if { $opts(error) != "" } {
694 verbose -log "$exitstat with: <$comp_output>, expected: <$opts(error)>"
695 if [regexp $opts(error) $comp_output] {
696 pass $testname
697 return
698 }
699 }
700 fail $testname
701 verbose "pruned stderr is [file_contents "dump.stderr"]" 2
702 return
703 } elseif { $opts(error-output) != "" } then {
704 pass $testname
705 return
706 }
707 }
708 } else {
709 if { $opts(error) != "" || $opts(error-output) != "" } {
710 fail $testname
711 }
712 }
713
714 if { $program == "" } {
715 return
716 }
717 set progopts1 $opts($program)
718 eval set progopts \$[string toupper $program]FLAGS
719 eval set binary \$[string toupper $program]
720
721 if { ![is_remote host] && [which $binary] == 0 } {
722 untested $testname
723 return
724 }
725
726 # For objdump, automatically translate standard section names to the targets one,
727 # if they are different.
728 set sect_names [get_standard_section_names]
729 if { $sect_names != "" && $program == "objdump" && $opts(section-subst) == ""} {
730 regsub -- "-j \\.text" $progopts1 "-j [lindex $sect_names 0]" progopts1
731 regsub -- "-j \\.data" $progopts1 "-j [lindex $sect_names 1]" progopts1
732 regsub -- "-j \\.bss" $progopts1 "-j [lindex $sect_names 2]" progopts1
733 }
734
735 if { $progopts1 == "" } { set $progopts1 "-r" }
736 verbose "running $binary $progopts $progopts1" 3
737
738 # Objcopy, unlike the other two, won't send its output to stdout,
739 # so we have to run it specially.
740 set cmd "$binary $progopts $progopts1 dump.o"
741 set redir ">dump.out"
742 if { $program == "objcopy" } {
743 set cmd "$binary $progopts $progopts1 dump.o dump.out"
744 set redir ""
745 }
746
747 send_log "$cmd\n"
748 set status [gas_host_run "$cmd" "$redir"]
749 set comp_output [prune_warnings [lindex $status 1]]
750 set comp_output [prune_warnings $comp_output]
751 if ![string match "" $comp_output] then {
752 send_log "$comp_output\n"
753 fail $testname
754 return
755 }
756
757 # Create the substition list only for objdump reference.
758 if { $sect_names != "" && $program == "objdump" } {
759 # Some testcases use ".text" while others use "\.text".
760 set regexp_subst [list "\\\\?\\.text" [lindex $sect_names 0] \
761 "\\\\?\\.data" [lindex $sect_names 1] \
762 "\\\\?\\.bss" [lindex $sect_names 2] ]
763 } else {
764 set regexp_subst ""
765 }
766
767 verbose_eval {[file_contents "dump.out"]} 3
768 if { [regexp_diff "dump.out" "${dumpfile}" $regexp_subst] } then {
769 fail $testname
770 verbose "output is [file_contents "dump.out"]" 2
771 return
772 }
773
774 pass $testname
775 }
776
777 proc slurp_options { file } {
778 if [catch { set f [open $file r] } x] {
779 #perror "couldn't open `$file': $x"
780 perror "$x"
781 return -1
782 }
783 set opt_array {}
784 # whitespace expression
785 set ws {[ ]*}
786 set nws {[^ ]*}
787 # whitespace is ignored anywhere except within the options list;
788 # option names are alphabetic plus dash
789 set pat "^#${ws}(\[a-zA-Z0-9-\]*)$ws:${ws}(.*)$ws\$"
790 while { [gets $f line] != -1 } {
791 set line [string trim $line]
792 # Whitespace here is space-tab.
793 if [regexp $pat $line xxx opt_name opt_val] {
794 # match!
795 lappend opt_array [list $opt_name $opt_val]
796 } elseif {![regexp "^#" $line ]} {
797 break
798 }
799 }
800 close $f
801 return $opt_array
802 }
803
804 proc objdump { opts } {
805 global OBJDUMP
806 global comp_output
807 global host_triplet
808
809 set status [gas_host_run "$OBJDUMP $opts" ""]
810 set comp_output [prune_warnings [lindex $status 1]]
811 verbose "objdump output=$comp_output\n" 3
812 }
813
814 proc objdump_start_no_subdir { prog opts } {
815 global OBJDUMP
816 global srcdir
817 global spawn_id
818
819 verbose "Starting $OBJDUMP $opts $prog" 2
820 set status [gas_host_run "$OBJDUMP $opts $prog" ">&gas.out"]
821 spawn -noecho -nottycopy cat gas.out
822 }
823
824 proc objdump_finish { } {
825 global spawn_id
826
827 catch "close"
828 catch "wait"
829 }
830
831 # Default timeout is 10 seconds, loses on a slow machine. But some
832 # configurations of dejagnu may override it.
833 if {$timeout<120} then { set timeout 120 }
834
835 expect_after -i {
836 timeout { perror "timeout" }
837 "virtual memory exhausted" { perror "virtual memory exhausted" }
838 buffer_full { perror "buffer full" }
839 eof { perror "eof" }
840 }
841
842 proc file_contents { filename } {
843 set file [open $filename r]
844 set contents [read $file]
845 close $file
846 return $contents
847 }
848
849 proc write_file { filename contents } {
850 set file [open $filename w]
851 puts $file "$contents"
852 close $file
853 }
854
855 proc verbose_eval { expr { level 1 } } {
856 global verbose
857 if $verbose>$level then { eval verbose "$expr" $level }
858 }
859
860 # This definition is taken from an unreleased version of DejaGnu. Once
861 # that version gets released, and has been out in the world for a few
862 # months at least, it may be safe to delete this copy.
863 if ![string length [info proc prune_warnings]] {
864 #
865 # prune_warnings -- delete various system verbosities from TEXT.
866 #
867 # An example is:
868 # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
869 #
870 # Sites with particular verbose os's may wish to override this in site.exp.
871 #
872 proc prune_warnings { text } {
873 # This is from sun4's. Do it for all machines for now.
874 # The "\\1" is to try to preserve a "\n" but only if necessary.
875 regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
876
877 # It might be tempting to get carried away and delete blank lines, etc.
878 # Just delete *exactly* what we're ask to, and that's it.
879 return $text
880 }
881 }
882
883 # run_list_test NAME (optional): OPTS TESTNAME
884 #
885 # Assemble the file "NAME.s" with command line options OPTS and
886 # compare the assembler standard error output against the regular
887 # expressions given in the file "NAME.l". If TESTNAME is provided,
888 # it will be used as the name of the test.
889
890 proc run_list_test { name {opts {}} {testname {}} } {
891 global srcdir subdir
892 if { [string length $testname] == 0 } then {
893 set testname "[file tail $subdir] $name"
894 }
895 set file $srcdir/$subdir/$name
896 gas_run ${name}.s $opts ">&dump.out"
897 if { [regexp_diff "dump.out" "${file}.l"] } then {
898 fail $testname
899 verbose "output is [file_contents "dump.out"]" 2
900 return
901 }
902 pass $testname
903 }
904
905 # run_list_test_stdin NAME (optional): OPTS TESTNAME
906 #
907 # Similar to run_list_test, but use stdin as input.
908
909 proc run_list_test_stdin { name {opts {}} {testname {}} } {
910 global srcdir subdir
911 if { [string length $testname] == 0 } then {
912 set testname "[file tail $subdir] $name"
913 }
914 set file $srcdir/$subdir/$name
915 gas_run_stdin ${name}.s $opts ">&dump.out"
916 if { [regexp_diff "dump.out" "${file}.l"] } then {
917 fail $testname
918 verbose "output is [file_contents "dump.out"]" 2
919 return
920 }
921 pass $testname
922 }