]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - gas/testsuite/lib/gas-defs.exp
cacfb50ae3b13170366af81816437d00a98e6b97
[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 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 return
294 }
295
296 # run_dump_tests TESTCASES EXTRA_OPTIONS
297 # Wrapper for run_dump_test, which is suitable for invoking as
298 # run_dump_tests [lsort [glob -nocomplain $srcdir/$subdir/*.d]]
299 # EXTRA_OPTIONS are passed down to run_dump_test. Honors runtest_file_p.
300 # Body cribbed from dg-runtest.
301
302 proc run_dump_tests { testcases {extra_options {}} } {
303 global runtests
304
305 foreach testcase $testcases {
306 # If testing specific files and this isn't one of them, skip it.
307 if ![runtest_file_p $runtests $testcase] {
308 continue
309 }
310 run_dump_test [file rootname [file tail $testcase]] $extra_options
311 }
312 }
313
314
315 # run_dump_test FILE (optional:) EXTRA_OPTIONS
316 #
317 # Assemble a .s file, then run some utility on it and check the output.
318 #
319 # There should be an assembly language file named FILE.s in the test
320 # suite directory, and a pattern file called FILE.d. `run_dump_test'
321 # will assemble FILE.s, run some tool like `objdump', `objcopy', or
322 # `nm' on the .o file to produce textual output, and then analyze that
323 # with regexps. The FILE.d file specifies what program to run, and
324 # what to expect in its output.
325 #
326 # The FILE.d file begins with zero or more option lines, which specify
327 # flags to pass to the assembler, the program to run to dump the
328 # assembler's output, and the options it wants. The option lines have
329 # the syntax:
330 #
331 # # OPTION: VALUE
332 #
333 # OPTION is the name of some option, like "name" or "objdump", and
334 # VALUE is OPTION's value. The valid options are described below.
335 # Whitespace is ignored everywhere, except within VALUE. The option
336 # list ends with the first line that doesn't match the above syntax.
337 # However, a line within the options that begins with a #, but doesn't
338 # have a recognizable option name followed by a colon, is considered a
339 # comment and entirely ignored.
340 #
341 # The optional EXTRA_OPTIONS argument to `run_dump_test' is a list of
342 # two-element lists. The first element of each is an option name, and
343 # the second additional arguments to be added on to the end of the
344 # option list as given in FILE.d. (If omitted, no additional options
345 # are added.)
346 #
347 # The interesting options are:
348 #
349 # name: TEST-NAME
350 # The name of this test, passed to DejaGNU's `pass' and `fail'
351 # commands. If omitted, this defaults to FILE, the root of the
352 # .s and .d files' names.
353 #
354 # as: FLAGS
355 # When assembling FILE.s, pass FLAGS to the assembler.
356 #
357 # addr2line: FLAGS
358 # nm: FLAGS
359 # objcopy: FLAGS
360 # objdump: FLAGS
361 # readelf: FLAGS
362 # Use the specified program to analyze the .o file, and pass it
363 # FLAGS, in addition to the .o file name. Note that they are run
364 # with LC_ALL=C in the environment to give consistent sorting
365 # of symbols. If no FLAGS are needed then use:
366 # PROG: [nm objcopy objdump readelf addr2line]
367 # instead.
368 # Note: for objdump, we automatically replaces the standard section
369 # names (.text, .data and .bss) by target ones if any (eg. rx-elf
370 # uses "P" instead of .text). The substition is done for both
371 # the objdump options (eg: "-j .text" is replaced by "-j P") and the
372 # reference file.
373 #
374 # source: SOURCE
375 # Assemble the file SOURCE.s. If omitted, this defaults to FILE.s.
376 # This is useful if several .d files want to share a .s file.
377 #
378 # dump: DUMP
379 # Match against DUMP.d. If omitted, this defaults to FILE.d. This
380 # is useful if several .d files differ by options only. Options are
381 # always read from FILE.d.
382 #
383 # target: GLOBS...
384 # Run this test only on a specified list of targets. More precisely,
385 # each glob in the space-separated list is passed to "istarget"; if
386 # it evaluates true for any of them, the test will be run, otherwise
387 # it will be marked unsupported.
388 #
389 # not-target: GLOBS...
390 # Do not run this test on a specified list of targets. Again,
391 # the each glob in the space-separated list is passed to
392 # "istarget", and the test is run if it evaluates *false* for
393 # *all* of them. Otherwise it will be marked unsupported.
394 #
395 # skip: GLOBS...
396 # not-skip: GLOBS...
397 # These are exactly the same as "not-target" and "target",
398 # respectively, except that they do nothing at all if the check
399 # fails. They should only be used in groups, to construct a single
400 # test which is run on all targets but with variant options or
401 # expected output on some targets. (For example, see
402 # gas/arm/inst.d and gas/arm/wince_inst.d.)
403 #
404 # error: REGEX
405 # An error with message matching REGEX must be emitted for the test
406 # to pass. The PROG, objdump, nm and objcopy options have no
407 # meaning and need not supplied if this is present.
408 #
409 # warning: REGEX
410 # Expect a gas warning matching REGEX. It is an error to issue
411 # both "error" and "warning".
412 #
413 # stderr: FILE
414 # FILE contains regexp lines to be matched against the diagnostic
415 # output of the assembler. This does not preclude the use of
416 # PROG, nm, objdump, or objcopy.
417 #
418 # error-output: FILE
419 # Means the same as 'stderr', but also indicates that the assembler
420 # is expected to exit unsuccessfully (therefore PROG, objdump, nm,
421 # and objcopy have no meaning and should not be supplied).
422 #
423 # section-subst: no
424 # Means that the section substitution for objdump is disabled.
425 #
426 # Each option may occur at most once.
427 #
428 # After the option lines come regexp lines. `run_dump_test' calls
429 # `regexp_diff' to compare the output of the dumping tool against the
430 # regexps in FILE.d. `regexp_diff' is defined later in this file; see
431 # further comments there.
432
433 proc run_dump_test { name {extra_options {}} } {
434 global subdir srcdir
435 global OBJDUMP NM AS OBJCOPY READELF
436 global OBJDUMPFLAGS NMFLAGS ASFLAGS OBJCOPYFLAGS READELFFLAGS
437 global ADDR2LINE ADDR2LINEFLAGS
438 global host_triplet
439 global env
440
441 if [string match "*/*" $name] {
442 set file $name
443 set name [file tail $name]
444 } else {
445 set file "$srcdir/$subdir/$name"
446 }
447 set opt_array [slurp_options "${file}.d"]
448 if { $opt_array == -1 } {
449 perror "error reading options from $file.d"
450 unresolved $subdir/$name
451 return
452 }
453 set opts(addr2line) {}
454 set opts(as) {}
455 set opts(objdump) {}
456 set opts(nm) {}
457 set opts(objcopy) {}
458 set opts(readelf) {}
459 set opts(name) {}
460 set opts(PROG) {}
461 set opts(source) {}
462 set opts(dump) {}
463 set opts(stderr) {}
464 set opts(error) {}
465 set opts(error-output) {}
466 set opts(warning) {}
467 set opts(target) {}
468 set opts(not-target) {}
469 set opts(skip) {}
470 set opts(not-skip) {}
471 set opts(section-subst) {}
472
473 foreach i $opt_array {
474 set opt_name [lindex $i 0]
475 set opt_val [lindex $i 1]
476 if ![info exists opts($opt_name)] {
477 perror "unknown option $opt_name in file $file.d"
478 unresolved $subdir/$name
479 return
480 }
481 if [string length $opts($opt_name)] {
482 perror "option $opt_name multiply set in $file.d"
483 unresolved $subdir/$name
484 return
485 }
486 if { $opt_name == "as" } {
487 set opt_val [subst $opt_val]
488 }
489 set opts($opt_name) $opt_val
490 }
491
492 foreach i $extra_options {
493 set opt_name [lindex $i 0]
494 set opt_val [lindex $i 1]
495 if ![info exists opts($opt_name)] {
496 perror "unknown option $opt_name given in extra_opts"
497 unresolved $subdir/$name
498 return
499 }
500 # add extra option to end of existing option, adding space
501 # if necessary.
502 if [string length $opts($opt_name)] {
503 append opts($opt_name) " "
504 }
505 append opts($opt_name) $opt_val
506 }
507
508 if { $opts(name) == "" } {
509 set testname "$subdir/$name"
510 } else {
511 set testname $opts(name)
512 }
513 verbose "Testing $testname"
514
515 if { (($opts(warning) != "") && ($opts(error) != "")) \
516 || (($opts(warning) != "") && ($opts(stderr) != "")) \
517 || (($opts(error-output) != "") && ($opts(stderr) != "")) \
518 || (($opts(error-output) != "") && ($opts(error) != "")) \
519 || (($opts(error-output) != "") && ($opts(warning) != "")) } {
520 perror "$testname: bad mix of stderr, error-output, error, and warning test-directives"
521 unresolved $testname
522 return
523 }
524 if { $opts(error-output) != "" } then {
525 set opts(stderr) $opts(error-output)
526 }
527
528 set program ""
529 # It's meaningless to require an output-testing method when we
530 # expect an error.
531 if { $opts(error) == "" && $opts(error-output) == "" } {
532 if {$opts(PROG) != ""} {
533 switch -- $opts(PROG) {
534 addr2line { set program addr2line }
535 objdump { set program objdump }
536 nm { set program nm }
537 objcopy { set program objcopy }
538 readelf { set program readelf }
539 default {
540 perror "unrecognized program option $opts(PROG) in $file.d"
541 unresolved $testname
542 return }
543 }
544 } else {
545 # Guess which program to run, by seeing which option was specified.
546 foreach p {objdump objcopy nm readelf addr2line} {
547 if {$opts($p) != ""} {
548 if {$program != ""} {
549 perror "ambiguous dump program in $file.d"
550 unresolved $testname
551 return
552 } else {
553 set program $p
554 }
555 }
556 }
557 }
558 if { $program == "" && $opts(warning) == "" } {
559 perror "dump program unspecified in $file.d"
560 unresolved $testname
561 return
562 }
563 }
564
565 # Handle skipping the test on specified targets.
566 # You can have both skip/not-skip and target/not-target, but you can't
567 # have both skip and not-skip, or target and not-target, in the same file.
568 if { $opts(skip) != "" } then {
569 if { $opts(not-skip) != "" } then {
570 perror "$testname: mixing skip and not-skip directives is invalid"
571 unresolved $testname
572 return
573 }
574 foreach glob $opts(skip) {
575 if {[istarget $glob]} { return }
576 }
577 }
578 if { $opts(not-skip) != "" } then {
579 set skip 1
580 foreach glob $opts(not-skip) {
581 if {[istarget $glob]} {
582 set skip 0
583 break
584 }
585 }
586 if {$skip} { return }
587 }
588 if { $opts(target) != "" } then {
589 if { $opts(not-target) != "" } then {
590 perror "$testname: mixing target and not-target directives is invalid"
591 unresolved $testname
592 return
593 }
594 set skip 1
595 foreach glob $opts(target) {
596 if {[istarget $glob]} {
597 set skip 0
598 break
599 }
600 }
601 if {$skip} {
602 unsupported $testname
603 return
604 }
605 }
606 if { $opts(not-target) != "" } then {
607 foreach glob $opts(not-target) {
608 if {[istarget $glob]} {
609 unsupported $testname
610 return
611 }
612 }
613 }
614
615
616 if { $opts(source) == "" } {
617 set sourcefile ${file}.s
618 } else {
619 set sourcefile $srcdir/$subdir/$opts(source)
620 }
621
622 if { $opts(dump) == "" } {
623 set dumpfile ${file}.d
624 } else {
625 set dumpfile $srcdir/$subdir/$opts(dump)
626 }
627
628 set cmd "$AS $ASFLAGS $opts(as) -o dump.o $sourcefile"
629 send_log "$cmd\n"
630 set status [gas_host_run $cmd ""]
631 set cmdret [lindex $status 0]
632 set comp_output [prune_warnings [lindex $status 1]]
633
634 set expmsg $opts(error)
635 if { $opts(warning) != "" } {
636 set expmsg $opts(warning)
637 }
638 if { $cmdret != 0 || $comp_output != "" || $expmsg != "" } then {
639 # If the executed program writes to stderr and stderr is not
640 # redirected, exec *always* returns failure, regardless of the
641 # program exit code. Thankfully, we can retrieve the true
642 # return status from a special variable. Redirection would
643 # cause a tcl-specific message to be appended, and we'd rather
644 # not deal with that if we can help it.
645 global errorCode
646 if { $cmdret != 0 && [lindex $errorCode 0] == "NONE" } {
647 set cmdret 0
648 }
649
650 set exitstat "succeeded"
651 if { $cmdret != 0 } { set exitstat "failed" }
652
653 send_log "$comp_output\n"
654 verbose "$comp_output" 3
655 if { $opts(stderr) == "" } then {
656 if { [regexp $expmsg $comp_output] \
657 && (($cmdret == 0) == ($opts(warning) != "")) } {
658 # We have the expected output from gas.
659 # Return if there's nothing more to do.
660 if { $opts(error) != "" || $program == "" } {
661 pass $testname
662 return
663 }
664 } else {
665 verbose -log "$exitstat with: <$comp_output>, expected: <$expmsg>"
666
667 fail $testname
668 return
669 }
670 } else {
671 catch {write_file dump.stderr "$comp_output"} write_output
672 if ![string match "" $write_output] then {
673 send_log "error writing dump.stderr: $write_output\n"
674 verbose "error writing dump.stderr: $write_output" 3
675 send_log "$comp_output\n"
676 verbose "$comp_output" 3
677 fail $testname
678 return
679 }
680 set stderrfile $srcdir/$subdir/$opts(stderr)
681 verbose "wrote pruned stderr to dump.stderr" 3
682 if { [regexp_diff "dump.stderr" "$stderrfile" ""] } then {
683 if { $opts(error) != "" } {
684 verbose -log "$exitstat with: <$comp_output>, expected: <$opts(error)>"
685 if [regexp $opts(error) $comp_output] {
686 pass $testname
687 return
688 }
689 }
690 fail $testname
691 verbose "pruned stderr is [file_contents "dump.stderr"]" 2
692 return
693 } elseif { $opts(error-output) != "" } then {
694 pass $testname
695 return
696 }
697 }
698 } else {
699 if { $opts(error) != "" || $opts(error-output) != "" } {
700 fail $testname
701 }
702 }
703
704 if { $program == "" } {
705 return
706 }
707 set progopts1 $opts($program)
708 eval set progopts \$[string toupper $program]FLAGS
709 eval set binary \$[string toupper $program]
710
711 if { ![is_remote host] && [which $binary] == 0 } {
712 untested $testname
713 return
714 }
715
716 # For objdump, automatically translate standard section names to the targets one,
717 # if they are different.
718 set sect_names [get_standard_section_names]
719 if { $sect_names != "" && $program == "objdump" && $opts(section-subst) == ""} {
720 regsub -- "-j \\.text" $progopts1 "-j [lindex $sect_names 0]" progopts1
721 regsub -- "-j \\.data" $progopts1 "-j [lindex $sect_names 1]" progopts1
722 regsub -- "-j \\.bss" $progopts1 "-j [lindex $sect_names 2]" progopts1
723 }
724
725 if { $progopts1 == "" } { set $progopts1 "-r" }
726 verbose "running $binary $progopts $progopts1" 3
727
728 # Objcopy, unlike the other two, won't send its output to stdout,
729 # so we have to run it specially.
730 set cmd "$binary $progopts $progopts1 dump.o"
731 set redir ">dump.out"
732 if { $program == "objcopy" } {
733 set cmd "$binary $progopts $progopts1 dump.o dump.out"
734 set redir ""
735 }
736
737 # Ensure consistent sorting of symbols
738 if {[info exists env(LC_ALL)]} {
739 set old_lc_all $env(LC_ALL)
740 }
741 set env(LC_ALL) "C"
742 send_log "$cmd\n"
743 set status [gas_host_run "$cmd" "$redir"]
744 set comp_output [prune_warnings [lindex $status 1]]
745 if {[info exists old_lc_all]} {
746 set env(LC_ALL) $old_lc_all
747 } else {
748 unset env(LC_ALL)
749 }
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 # regexp_diff, based on simple_diff taken from ld test suite.
843 # Compares two files line-by-line.
844 # FILE_1 contains strings, FILE_2 contains regexps and #-comments
845 # Blank lines are ignored in either file.
846 # Subsitutions in REF_SUBST are applied on FILE_2 lines.
847 # Returns non-zero if differences exist.
848 #
849 proc regexp_diff { file_1 file_2 ref_subst} {
850
851 set eof -1
852 set end_1 0
853 set end_2 0
854 set differences 0
855 set diff_pass 0
856
857 if [file exists $file_1] then {
858 set file_a [open $file_1 r]
859 } else {
860 perror "$file_1 doesn't exist"
861 return 1
862 }
863
864 if [file exists $file_2] then {
865 set file_b [open $file_2 r]
866 } else {
867 perror "$file_2 doesn't exist"
868 close $file_a
869 return 1
870 }
871
872 verbose " Regexp-diff'ing: $file_1 $file_2" 2
873
874 while { 1 } {
875 set line_a ""
876 set line_b ""
877 while { [string length $line_a] == 0 } {
878 # Ignore blank line in FILE_1.
879 if { [gets $file_a line_a] == $eof } {
880 set end_1 1
881 break
882 }
883 }
884 while { [string length $line_b] == 0 || [string match "#*" $line_b] } {
885 if [ string match "#pass" $line_b ] {
886 set end_2 1
887 set diff_pass 1
888 break
889 } elseif [ string match "#..." $line_b ] {
890 if { [gets $file_b line_b] == $eof } {
891 set end_2 1
892 set diff_pass 1
893 break
894 }
895 # Substitute on the reference.
896 foreach {name value} $ref_subst {
897 regsub -- $name $line_b $value line_b
898 }
899 verbose "looking for \"^$line_b$\"" 3
900 while { ![regexp "^$line_b$" "$line_a"] } {
901 verbose "skipping \"$line_a\"" 3
902 if { [gets $file_a line_a] == $eof } {
903 set end_1 1
904 break
905 }
906 }
907 break
908 }
909 if { [gets $file_b line_b] == $eof } {
910 set end_2 1
911 break
912 }
913 }
914
915 if { $diff_pass } {
916 break
917 } elseif { $end_1 && $end_2 } {
918 break
919 } elseif { $end_1 } {
920 send_log "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n"
921 verbose "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3
922 set differences 1
923 break
924 } elseif { $end_2 } {
925 send_log "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n"
926 verbose "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3
927 set differences 1
928 break
929 } else {
930 # Substitute on the reference.
931 foreach {name value} $ref_subst {
932 regsub -- $name $line_b $value line_b
933 }
934 verbose "regexp \"^$line_b$\"\nline \"$line_a\"" 3
935 if ![regexp "^$line_b$" "$line_a"] {
936 send_log "regexp_diff match failure\n"
937 send_log "regexp \"^$line_b$\"\nline \"$line_a\"\n"
938 verbose "regexp_diff match failure\n" 3
939 set differences 1
940 }
941 }
942 }
943
944 if { $differences == 0 && !$diff_pass && [eof $file_a] != [eof $file_b] } {
945 send_log "$file_1 and $file_2 are different lengths\n"
946 verbose "$file_1 and $file_2 are different lengths" 3
947 set differences 1
948 }
949
950 close $file_a
951 close $file_b
952
953 return $differences
954 }
955
956 proc file_contents { filename } {
957 set file [open $filename r]
958 set contents [read $file]
959 close $file
960 return $contents
961 }
962
963 proc write_file { filename contents } {
964 set file [open $filename w]
965 puts $file "$contents"
966 close $file
967 }
968
969 proc verbose_eval { expr { level 1 } } {
970 global verbose
971 if $verbose>$level then { eval verbose "$expr" $level }
972 }
973
974 # This definition is taken from an unreleased version of DejaGnu. Once
975 # that version gets released, and has been out in the world for a few
976 # months at least, it may be safe to delete this copy.
977 if ![string length [info proc prune_warnings]] {
978 #
979 # prune_warnings -- delete various system verbosities from TEXT.
980 #
981 # An example is:
982 # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9
983 #
984 # Sites with particular verbose os's may wish to override this in site.exp.
985 #
986 proc prune_warnings { text } {
987 # This is from sun4's. Do it for all machines for now.
988 # The "\\1" is to try to preserve a "\n" but only if necessary.
989 regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text
990
991 # It might be tempting to get carried away and delete blank lines, etc.
992 # Just delete *exactly* what we're ask to, and that's it.
993 return $text
994 }
995 }
996
997 # run_list_test NAME (optional): OPTS TESTNAME
998 #
999 # Assemble the file "NAME.s" with command line options OPTS and
1000 # compare the assembler standard error output against the regular
1001 # expressions given in the file "NAME.l". If TESTNAME is provided,
1002 # it will be used as the name of the test.
1003
1004 proc run_list_test { name {opts {}} {testname {}} } {
1005 global srcdir subdir
1006 if { [string length $testname] == 0 } then {
1007 set testname "[file tail $subdir] $name"
1008 }
1009 set file $srcdir/$subdir/$name
1010 gas_run ${name}.s $opts ">&dump.out"
1011 if { [regexp_diff "dump.out" "${file}.l" ""] } then {
1012 fail $testname
1013 verbose "output is [file_contents "dump.out"]" 2
1014 return
1015 }
1016 pass $testname
1017 }
1018
1019 # run_list_test_stdin NAME (optional): OPTS TESTNAME
1020 #
1021 # Similar to run_list_test, but use stdin as input.
1022
1023 proc run_list_test_stdin { name {opts {}} {testname {}} } {
1024 global srcdir subdir
1025 if { [string length $testname] == 0 } then {
1026 set testname "[file tail $subdir] $name"
1027 }
1028 set file $srcdir/$subdir/$name
1029 gas_run_stdin ${name}.s $opts ">&dump.out"
1030 if { [regexp_diff "dump.out" "${file}.l" ""] } then {
1031 fail $testname
1032 verbose "output is [file_contents "dump.out"]" 2
1033 return
1034 }
1035 pass $testname
1036 }