Add elfedit
[deliverable/binutils-gdb.git] / binutils / testsuite / lib / utils-lib.exp
CommitLineData
aa820537
AM
1# Copyright 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2003, 2004, 2006, 2007,
2# 2009 Free Software Foundation, Inc.
252b5132
RH
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
32866df7 6# the Free Software Foundation; either version 3 of the License, or
252b5132
RH
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
b43b5d5f 16# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
252b5132
RH
17
18# Please email any bugs, comments, and/or additions to this file to:
19# bug-dejagnu@prep.ai.mit.edu
20
21# This file was written by Rob Savoye <rob@cygnus.com>
22# and extended by Ian Lance Taylor <ian@cygnus.com>
23
24proc binutil_version { prog } {
25 if ![is_remote host] {
8d263650 26 set path [which $prog]
252b5132
RH
27 if {$path == 0} then {
28 perror "$prog can't be run, file not found."
29 return ""
30 }
31 } else {
32 set path $prog
33 }
8d263650
BE
34 set state [remote_exec host $prog --version]
35 set tmp "[lindex $state 1]\n"
252b5132
RH
36 # Should find a way to discard constant parts, keep whatever's
37 # left, so the version string could be almost anything at all...
38 regexp "\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" "$tmp" version cyg number
39 if ![info exists number] then {
40 return "$path (no version number)\n"
41 }
42 return "$path $number\n"
43}
44
45#
46# default_binutils_run
47# run a program, returning the output
48# sets binutils_run_failed if the program does not exist
49#
50proc default_binutils_run { prog progargs } {
51 global binutils_run_failed
52 global host_triplet
53
54 set binutils_run_failed 0
55
56 if ![is_remote host] {
57 if {[which $prog] == 0} then {
58 perror "$prog does not exist"
59 set binutils_run_failed 1
60 return ""
61 }
62 }
63
64 send_log "$prog $progargs\n"
65 verbose "$prog $progargs"
66
67 # Gotta quote dollar-signs because they get mangled by the
68 # shell otherwise.
69 regsub -all "\\$" "$progargs" "\\$" progargs
70
71 set state [remote_exec host $prog $progargs]
8d263650 72 set exec_output [prune_warnings [lindex $state 1]]
252b5132
RH
73 if {![string match "" $exec_output]} then {
74 send_log "$exec_output\n"
75 verbose "$exec_output"
da28e1e1
L
76 } else {
77 if { [lindex $state 0] != 0 } {
78 set exec_output "$prog exited with status [lindex $state 0]"
79 send_log "$exec_output\n"
80 verbose "$exec_output"
81 }
252b5132
RH
82 }
83 return $exec_output
84}
85
86#
87# default_binutils_assemble
88# assemble a file
89#
90proc default_binutils_assemble { source object } {
91 global srcdir
92 global host_triplet
93
94 # The HPPA assembler syntax is a little different than most, to make
95 # the test source file assemble we need to run it through sed.
96 #
97 # This is a hack in that it won't scale well if other targets need
98 # similar transformations to assemble. We'll generalize the hack
99 # if/when other targets need similar handling.
12c616f1
AM
100 if { [istarget "hppa*-*-*"] && ![istarget "*-*-linux*" ] } then {
101 set sed_file $srcdir/config/hppa.sed
102 send_log "sed -f $sed_file < $source > asm.s\n"
103 verbose "sed -f $sed_file < $source > asm.s"
8d263650 104 catch "exec sed -f $sed_file < $source > asm.s"
252b5132
RH
105 set source asm.s
106 }
107
8d263650 108 set exec_output [target_assemble $source $object ""]
252b5132
RH
109 set exec_output [prune_warnings $exec_output]
110
111 if [string match "" $exec_output] {
112 return 1
113 } else {
114 send_log "$exec_output\n"
115 verbose "$exec_output"
116 perror "$source: assembly failed"
117 return 0
118 }
119}
9ce701e2
L
120
121#
122# is_elf_format
123# true if the object format is known to be ELF
124#
125proc is_elf_format {} {
126 if { ![istarget *-*-sysv4*] \
127 && ![istarget *-*-unixware*] \
128 && ![istarget *-*-elf*] \
129 && ![istarget *-*-eabi*] \
130 && ![istarget hppa*64*-*-hpux*] \
131 && ![istarget ia64-*-hpux*] \
132 && ![istarget *-*-linux*] \
133 && ![istarget *-*-irix5*] \
134 && ![istarget *-*-irix6*] \
135 && ![istarget *-*-netbsd*] \
136 && ![istarget *-*-solaris2*] } {
137 return 0
138 }
139
140 if { [istarget *-*-linux*aout*] \
141 || [istarget *-*-linux*oldld*] } {
142 return 0
143 }
144
145 if { ![istarget *-*-netbsdelf*] \
146 && ([istarget *-*-netbsd*aout*] \
147 || [istarget *-*-netbsdpe*] \
148 || [istarget arm*-*-netbsd*] \
149 || [istarget sparc-*-netbsd*] \
150 || [istarget i*86-*-netbsd*] \
151 || [istarget m68*-*-netbsd*] \
152 || [istarget vax-*-netbsd*] \
153 || [istarget ns32k-*-netbsd*]) } {
154 return 0
155 }
156 return 1
157}
0fd555c4
NC
158
159#
160# exe_ext
161# Returns target executable extension, if any.
162#
163proc exe_ext {} {
99ad8390 164 if { [istarget *-*-mingw*] || [istarget *-*-cygwin*] } {
0fd555c4
NC
165 return ".exe"
166 } else {
167 return ""
168 }
169}
af3c5dea
L
170
171# Copied and modified from gas.
172
173# run_dump_test FILE (optional:) EXTRA_OPTIONS
174#
175# Assemble a .s file, then run some utility on it and check the output.
176#
177# There should be an assembly language file named FILE.s in the test
178# suite directory, and a pattern file called FILE.d. `run_dump_test'
179# will assemble FILE.s, run some tool like `objdump', `objcopy', or
180# `nm' on the .o file to produce textual output, and then analyze that
181# with regexps. The FILE.d file specifies what program to run, and
182# what to expect in its output.
183#
184# The FILE.d file begins with zero or more option lines, which specify
185# flags to pass to the assembler, the program to run to dump the
186# assembler's output, and the options it wants. The option lines have
187# the syntax:
188#
189# # OPTION: VALUE
190#
191# OPTION is the name of some option, like "name" or "objdump", and
192# VALUE is OPTION's value. The valid options are described below.
193# Whitespace is ignored everywhere, except within VALUE. The option
194# list ends with the first line that doesn't match the above syntax.
195# However, a line within the options that begins with a #, but doesn't
196# have a recognizable option name followed by a colon, is considered a
197# comment and entirely ignored.
198#
199# The optional EXTRA_OPTIONS argument to `run_dump_test' is a list of
200# two-element lists. The first element of each is an option name, and
201# the second additional arguments to be added on to the end of the
202# option list as given in FILE.d. (If omitted, no additional options
203# are added.)
204#
205# The interesting options are:
206#
207# name: TEST-NAME
208# The name of this test, passed to DejaGNU's `pass' and `fail'
209# commands. If omitted, this defaults to FILE, the root of the
210# .s and .d files' names.
211#
212# as: FLAGS
213# When assembling FILE.s, pass FLAGS to the assembler.
214#
215# PROG: PROGRAM-NAME
216# The name of the program to run to analyze the .o file produced
217# by the assembler. This can be omitted; run_dump_test will guess
218# which program to run by seeing which of the flags options below
219# is present.
220#
221# objdump: FLAGS
222# nm: FLAGS
223# objcopy: FLAGS
224# Use the specified program to analyze the .o file, and pass it
225# FLAGS, in addition to the .o file name. Note that they are run
226# with LC_ALL=C in the environment to give consistent sorting
227# of symbols.
228#
229# source: SOURCE
230# Assemble the file SOURCE.s. If omitted, this defaults to FILE.s.
231# This is useful if several .d files want to share a .s file.
232#
233# target: GLOBS...
234# Run this test only on a specified list of targets. More precisely,
235# each glob in the space-separated list is passed to "istarget"; if
236# it evaluates true for any of them, the test will be run, otherwise
237# it will be marked unsupported.
238#
239# not-target: GLOBS...
240# Do not run this test on a specified list of targets. Again,
241# the each glob in the space-separated list is passed to
242# "istarget", and the test is run if it evaluates *false* for
243# *all* of them. Otherwise it will be marked unsupported.
244#
245# skip: GLOBS...
246# not-skip: GLOBS...
247# These are exactly the same as "not-target" and "target",
248# respectively, except that they do nothing at all if the check
249# fails. They should only be used in groups, to construct a single
250# test which is run on all targets but with variant options or
251# expected output on some targets. (For example, see
252# gas/arm/inst.d and gas/arm/wince_inst.d.)
253#
254# error: REGEX
255# An error with message matching REGEX must be emitted for the test
256# to pass. The PROG, objdump, nm and objcopy options have no
257# meaning and need not supplied if this is present.
258#
259# warning: REGEX
260# Expect a gas warning matching REGEX. It is an error to issue
261# both "error" and "warning".
262#
263# stderr: FILE
264# FILE contains regexp lines to be matched against the diagnostic
265# output of the assembler. This does not preclude the use of
266# PROG, nm, objdump, or objcopy.
267#
268# error-output: FILE
269# Means the same as 'stderr', but also indicates that the assembler
270# is expected to exit unsuccessfully (therefore PROG, objdump, nm,
271# and objcopy have no meaning and should not be supplied).
272#
273# Each option may occur at most once.
274#
275# After the option lines come regexp lines. `run_dump_test' calls
276# `regexp_diff' to compare the output of the dumping tool against the
277# regexps in FILE.d. `regexp_diff' is defined later in this file; see
278# further comments there.
279
280proc run_dump_test { name {extra_options {}} } {
281 global subdir srcdir
748fc5e9
L
282 global OBJDUMP NM OBJCOPY READELF STRIP
283 global OBJDUMPFLAGS NMFLAGS OBJCOPYFLAGS READELFFLAGS STRIPFLAGS
30fd33bb 284 global ELFEDIT ELFEDITFLAGS
af3c5dea
L
285 global host_triplet
286 global env
287 global copyfile
288 global tempfile
289
290 if [string match "*/*" $name] {
291 set file $name
292 set name [file tail $name]
293 } else {
294 set file "$srcdir/$subdir/$name"
295 }
296 set opt_array [slurp_options "${file}.d"]
297 if { $opt_array == -1 } {
298 perror "error reading options from $file.d"
299 unresolved $subdir/$name
300 return
301 }
302 set opts(addr2line) {}
303 set opts(ar) {}
304 set opts(nm) {}
305 set opts(objcopy) {}
306 set opts(objdump) {}
307 set opts(strip) {}
308 set opts(ranlib) {}
309 set opts(readelf) {}
310 set opts(size) {}
311 set opts(strings) {}
312 set opts(name) {}
30fd33bb 313 set opts(elfedit) {}
af3c5dea
L
314 set opts(PROG) {}
315 set opts(DUMPPROG) {}
316 set opts(source) {}
317 set opts(target) {}
318 set opts(not-target) {}
319 set opts(skip) {}
320 set opts(not-skip) {}
321
322 foreach i $opt_array {
323 set opt_name [lindex $i 0]
324 set opt_val [lindex $i 1]
325 if ![info exists opts($opt_name)] {
326 perror "unknown option $opt_name in file $file.d"
327 unresolved $subdir/$name
328 return
329 }
330 if [string length $opts($opt_name)] {
331 perror "option $opt_name multiply set in $file.d"
332 unresolved $subdir/$name
333 return
334 }
335 set opts($opt_name) $opt_val
336 }
337
338 foreach i $extra_options {
339 set opt_name [lindex $i 0]
340 set opt_val [lindex $i 1]
341 if ![info exists opts($opt_name)] {
342 perror "unknown option $opt_name given in extra_opts"
343 unresolved $subdir/$name
344 return
345 }
346 # add extra option to end of existing option, adding space
347 # if necessary.
348 if [string length $opts($opt_name)] {
349 append opts($opt_name) " "
350 }
351 append opts($opt_name) $opt_val
352 }
353
354 if { $opts(name) == "" } {
355 set testname "$subdir/$name"
356 } else {
357 set testname $opts(name)
358 }
359 verbose "Testing $testname"
360
361 if {$opts(PROG) == ""} {
362 perror "program isn't set in $file.d"
363 unresolved $testname
364 return
365 }
366
748fc5e9 367 set destopt ""
af3c5dea
L
368 switch -- $opts(PROG) {
369 ar { set program ar }
370 objcopy { set program objcopy }
371 ranlib { set program ranlib }
748fc5e9
L
372 strip {
373 set program strip
374 set destopt "-o"
375 }
af3c5dea 376 strings { set program strings }
30fd33bb 377 elfedit { set program elfedit }
af3c5dea
L
378 default {
379 perror "unrecognized program option $opts(PROG) in $file.d"
380 unresolved $testname
381 return }
382 }
383
384 set dumpprogram ""
385 if { $opts(DUMPPROG) != "" } {
386 switch -- $opts(DUMPPROG) {
387 addr2line { set dumpprogram addr2line }
388 nm { set dumpprogram nm }
389 objdump { set dumpprogram objdump }
390 readelf { set dumpprogram readelf }
391 size { set dumpprogram size }
392 default {
393 perror "unrecognized dump program option $opts(DUMPPROG) in $file.d"
394 unresolved $testname
395 return }
396 }
397 } else {
398 # Guess which program to run, by seeing which option was specified.
399 foreach p {objdump nm readelf} {
400 if {$opts($p) != ""} {
401 if {$dumpprogram != ""} {
402 perror "ambiguous dump program in $file.d"
403 unresolved $testname
404 return
405 } else {
406 set dumpprogram $p
407 }
408 }
409 }
410 }
411
412 # Handle skipping the test on specified targets.
413 # You can have both skip/not-skip and target/not-target, but you can't
414 # have both skip and not-skip, or target and not-target, in the same file.
415 if { $opts(skip) != "" } then {
416 if { $opts(not-skip) != "" } then {
417 perror "$testname: mixing skip and not-skip directives is invalid"
418 unresolved $testname
419 return
420 }
421 foreach glob $opts(skip) {
422 if {[istarget $glob]} { return }
423 }
424 }
425 if { $opts(not-skip) != "" } then {
426 set skip 1
427 foreach glob $opts(not-skip) {
428 if {[istarget $glob]} {
429 set skip 0
430 break
431 }
432 }
433 if {$skip} { return }
434 }
435 if { $opts(target) != "" } then {
436 if { $opts(not-target) != "" } then {
437 perror "$testname: mixing target and not-target directives is invalid"
438 unresolved $testname
439 return
440 }
441 set skip 1
442 foreach glob $opts(target) {
443 if {[istarget $glob]} {
444 set skip 0
445 break
446 }
447 }
448 if {$skip} {
449 unsupported $testname
450 return
451 }
452 }
453 if { $opts(not-target) != "" } then {
454 foreach glob $opts(not-target) {
455 if {[istarget $glob]} {
456 unsupported $testname
457 return
458 }
459 }
460 }
461
462 if { $opts(source) == "" } {
463 set srcfile ${file}.s
464 } else {
465 set srcfile $srcdir/$subdir/$opts(source)
466 }
467
7f6a71ff 468 set exec_output [binutils_assemble ${srcfile} $tempfile]
af3c5dea
L
469 if [string match "" $exec_output] then {
470 send_log "$exec_output\n"
471 verbose "$exec_output"
472 fail $testname
473 return
474 }
475
476 set progopts1 $opts($program)
477 eval set progopts \$[string toupper $program]FLAGS
478 eval set binary \$[string toupper $program]
479
748fc5e9 480 set exec_output [binutils_run $binary "$progopts $progopts1 $tempfile $destopt ${copyfile}.o"]
af3c5dea
L
481 if ![string match "" $exec_output] {
482 send_log "$exec_output\n"
483 verbose "$exec_output"
484 fail $testname
485 return
486 }
487
488 set progopts1 $opts($dumpprogram)
489 eval set progopts \$[string toupper $dumpprogram]FLAGS
490 eval set binary \$[string toupper $dumpprogram]
491
7f6a71ff 492 if { ![is_remote host] && [which $binary] == 0 } {
af3c5dea
L
493 untested $testname
494 return
495 }
496
497 verbose "running $binary $progopts $progopts1" 3
498
7f6a71ff 499 set cmd "$binary $progopts $progopts1 ${copyfile}.o"
af3c5dea
L
500
501 # Ensure consistent sorting of symbols
502 if {[info exists env(LC_ALL)]} {
503 set old_lc_all $env(LC_ALL)
504 }
505 set env(LC_ALL) "C"
506 send_log "$cmd\n"
7f6a71ff 507 set comp_output [remote_exec host $cmd "" "/dev/null" "tmpdir/dump.out"]
af3c5dea
L
508 if {[info exists old_lc_all]} {
509 set env(LC_ALL) $old_lc_all
510 } else {
511 unset env(LC_ALL)
512 }
7f6a71ff
JM
513 if { [lindex $comp_output 0] != 0 } then {
514 send_log "$comp_output\n"
515 fail $testname
516 return
517 }
518 set comp_output [prune_warnings [lindex $comp_output 1]]
af3c5dea
L
519 if ![string match "" $comp_output] then {
520 send_log "$comp_output\n"
521 fail $testname
522 return
523 }
524
525 verbose_eval {[file_contents "tmpdir/dump.out"]} 3
526 if { [regexp_diff "tmpdir/dump.out" "${file}.d"] } then {
527 fail $testname
528 verbose "output is [file_contents "tmpdir/dump.out"]" 2
529 return
530 }
531
532 pass $testname
533}
534
535proc slurp_options { file } {
536 if [catch { set f [open $file r] } x] {
537 #perror "couldn't open `$file': $x"
538 perror "$x"
539 return -1
540 }
541 set opt_array {}
542 # whitespace expression
543 set ws {[ ]*}
544 set nws {[^ ]*}
545 # whitespace is ignored anywhere except within the options list;
546 # option names are alphabetic plus dash
547 set pat "^#${ws}(\[a-zA-Z-\]*)$ws:${ws}(.*)$ws\$"
548 while { [gets $f line] != -1 } {
549 set line [string trim $line]
550 # Whitespace here is space-tab.
551 if [regexp $pat $line xxx opt_name opt_val] {
552 # match!
553 lappend opt_array [list $opt_name $opt_val]
554 } elseif {![regexp "^#" $line ]} {
555 break
556 }
557 }
558 close $f
559 return $opt_array
560}
561
562# regexp_diff, based on simple_diff taken from ld test suite
563# compares two files line-by-line
564# file1 contains strings, file2 contains regexps and #-comments
565# blank lines are ignored in either file
566# returns non-zero if differences exist
567#
568proc regexp_diff { file_1 file_2 } {
569
570 set eof -1
571 set end_1 0
572 set end_2 0
573 set differences 0
574 set diff_pass 0
575
576 if [file exists $file_1] then {
577 set file_a [open $file_1 r]
578 } else {
579 perror "$file_1 doesn't exist"
580 return 1
581 }
582
583 if [file exists $file_2] then {
584 set file_b [open $file_2 r]
585 } else {
586 perror "$file_2 doesn't exist"
587 close $file_a
588 return 1
589 }
590
591 verbose " Regexp-diff'ing: $file_1 $file_2" 2
592
593 while { 1 } {
594 set line_a ""
595 set line_b ""
596 while { [string length $line_a] == 0 } {
597 if { [gets $file_a line_a] == $eof } {
598 set end_1 1
599 break
600 }
601 }
602 while { [string length $line_b] == 0 || [string match "#*" $line_b] } {
603 if [ string match "#pass" $line_b ] {
604 set end_2 1
605 set diff_pass 1
606 break
607 } elseif [ string match "#..." $line_b ] {
608 if { [gets $file_b line_b] == $eof } {
609 set end_2 1
610 set diff_pass 1
611 break
612 }
613 verbose "looking for \"^$line_b$\"" 3
614 while { ![regexp "^$line_b$" "$line_a"] } {
615 verbose "skipping \"$line_a\"" 3
616 if { [gets $file_a line_a] == $eof } {
617 set end_1 1
618 break
619 }
620 }
621 break
622 }
623 if { [gets $file_b line_b] == $eof } {
624 set end_2 1
625 break
626 }
627 }
628
629 if { $diff_pass } {
630 break
631 } elseif { $end_1 && $end_2 } {
632 break
633 } elseif { $end_1 } {
634 send_log "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n"
635 verbose "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3
636 set differences 1
637 break
638 } elseif { $end_2 } {
639 send_log "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n"
640 verbose "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3
641 set differences 1
642 break
643 } else {
644 verbose "regexp \"^$line_b$\"\nline \"$line_a\"" 3
645 if ![regexp "^$line_b$" "$line_a"] {
646 send_log "regexp_diff match failure\n"
647 send_log "regexp \"^$line_b$\"\nline \"$line_a\"\n"
648 verbose "regexp_diff match failure\n" 3
649 set differences 1
650 }
651 }
652 }
653
654 if { $differences == 0 && !$diff_pass && [eof $file_a] != [eof $file_b] } {
655 send_log "$file_1 and $file_2 are different lengths\n"
656 verbose "$file_1 and $file_2 are different lengths" 3
657 set differences 1
658 }
659
660 close $file_a
661 close $file_b
662
663 return $differences
664}
665
666proc file_contents { filename } {
667 set file [open $filename r]
668 set contents [read $file]
669 close $file
670 return $contents
671}
672
673proc verbose_eval { expr { level 1 } } {
674 global verbose
675 if $verbose>$level then { eval verbose "$expr" $level }
676}
This page took 0.457204 seconds and 4 git commands to generate.