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