diff options
author | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 1999-05-03 07:29:11 +0000 |
commit | 252b5132c753830d5fd56823373aed85f2a0db63 (patch) | |
tree | 1af963bfd8d3e55167b81def4207f175eaff3a56 /gas/testsuite/lib | |
download | gdb-252b5132c753830d5fd56823373aed85f2a0db63.zip gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.gz gdb-252b5132c753830d5fd56823373aed85f2a0db63.tar.bz2 |
19990502 sourceware importbinu_ss_19990502
Diffstat (limited to 'gas/testsuite/lib')
-rwxr-xr-x | gas/testsuite/lib/doboth | 19 | ||||
-rwxr-xr-x | gas/testsuite/lib/doobjcmp | 88 | ||||
-rwxr-xr-x | gas/testsuite/lib/dostriptest | 14 | ||||
-rwxr-xr-x | gas/testsuite/lib/dotest | 43 | ||||
-rwxr-xr-x | gas/testsuite/lib/dounsreloc | 8 | ||||
-rwxr-xr-x | gas/testsuite/lib/dounssym | 8 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-defs.exp | 574 | ||||
-rw-r--r-- | gas/testsuite/lib/gas-dg.exp | 53 | ||||
-rwxr-xr-x | gas/testsuite/lib/run | 2 |
9 files changed, 809 insertions, 0 deletions
diff --git a/gas/testsuite/lib/doboth b/gas/testsuite/lib/doboth new file mode 100755 index 0000000..bcb837c --- /dev/null +++ b/gas/testsuite/lib/doboth @@ -0,0 +1,19 @@ +#!/bin/sh + +x=$1 ; shift +y=$1 ; shift + +rm tmp.0 > /dev/null 2>&1 +ln -s $x tmp.0 +$* tmp.0 > tmp.1 + +rm tmp.0 +ln -s $y tmp.0 +$* tmp.0 > tmp.2 + +rm tmp.0 + +diff -c tmp.1 tmp.2 +exit + +#eof diff --git a/gas/testsuite/lib/doobjcmp b/gas/testsuite/lib/doobjcmp new file mode 100755 index 0000000..35c32da --- /dev/null +++ b/gas/testsuite/lib/doobjcmp @@ -0,0 +1,88 @@ +#!/bin/sh +# compare two object files, in depth. + +x=$1 +y=$2 +BOTH="$1 $2" + + +# if they cmp, we're fine. +if (cmp $BOTH > /dev/null) +then + exit 0 +fi + +# otherwise, we must look closer. +if (doboth $BOTH size) +then + echo Sizes ok. +else + echo Sizes differ: + size $BOTH +# exit 1 +fi + +if (doboth $BOTH objdump +header) +then + echo Headers ok. +else + echo Header differences. +# exit 1 +fi + +if (doboth $BOTH objdump +text > /dev/null) +then + echo Text ok. +else + echo Text differences. +# doboth $BOTH objdump +text +# exit 1 +fi + +if (doboth $BOTH objdump +data > /dev/null) +then + echo Data ok. +else + echo Data differences. +# doboth $BOTH objdump +data +# exit 1 +fi + +if (doboth $BOTH objdump +symbols > /dev/null) +then + echo Symbols ok. +else + echo -n Symbol differences... + + if (doboth $BOTH dounsortsymbols) + then + echo but symbols are simply ordered differently. +# echo Now what to do about relocs'?' +# exit 1 + else + echo and symbols differ in content. + exit 1 + fi +fi + +# of course, if there were symbol diffs, then the reloc symbol indexes +# will be off. + +if (doboth $BOTH objdump -r > /dev/null) +then + echo Reloc ok. +else + echo -n Reloc differences... + + if (doboth $BOTH dounsortreloc) + then + echo but relocs are simply ordered differently. + else + echo and relocs differ in content. + exit 1 + fi +fi + +exit + +# eof diff --git a/gas/testsuite/lib/dostriptest b/gas/testsuite/lib/dostriptest new file mode 100755 index 0000000..3a51701 --- /dev/null +++ b/gas/testsuite/lib/dostriptest @@ -0,0 +1,14 @@ +#!/bin/sh + +x=striptest.xx.$$ +y=striptest.yy.$$ + +cp $1 $x +strip $x +cp $2 $y +strip $y + +doobjcmp $x $y +exit + +#eof diff --git a/gas/testsuite/lib/dotest b/gas/testsuite/lib/dotest new file mode 100755 index 0000000..a768a22 --- /dev/null +++ b/gas/testsuite/lib/dotest @@ -0,0 +1,43 @@ +#!/bin/sh +# ad hoc debug tool + +x=$1 +y=$2 + +xout=`basename $x`.xxx.$$ +yout=`basename $x`.yyy.$$ + +mkdir $xout +mkdir $yout + +for i in *.s +do + echo Testing $i... + object=`basename $i .s`.o + $x $i -o $xout/$object + $y $i -o $yout/$object + +# if they cmp, we're ok. Otherwise we have to look closer. + + if (cmp $xout/$object $yout/$object) + then + echo $i is ok. + else + if (doobjcmp $xout/$object $yout/$object) + then + echo Not the same but objcmp ok. + else + exit 1 + fi + fi + + echo +done + +rm -rf $xout $yout + +exit 0 + +# EOF + + diff --git a/gas/testsuite/lib/dounsreloc b/gas/testsuite/lib/dounsreloc new file mode 100755 index 0000000..0d69533 --- /dev/null +++ b/gas/testsuite/lib/dounsreloc @@ -0,0 +1,8 @@ +#!/bin/sh +# objdump the reloc table, but strip off the headings and reloc +# numbers and sort the result. Intended for use in comparing reloc +# tables that may not be in the same order. + +objdump +reloc +omit-relocation-numbers +omit-symbol-numbers $1 \ + | sort +#eof diff --git a/gas/testsuite/lib/dounssym b/gas/testsuite/lib/dounssym new file mode 100755 index 0000000..a44da62 --- /dev/null +++ b/gas/testsuite/lib/dounssym @@ -0,0 +1,8 @@ +#!/bin/sh +# objdump the symbol table, but strip off the headings and symbol +# numbers and sort the result. Intended for use in comparing symbol +# tables that may not be in the same order. + +objdump +symbols +omit-symbol-numbers $1 \ + | sort +#eof diff --git a/gas/testsuite/lib/gas-defs.exp b/gas/testsuite/lib/gas-defs.exp new file mode 100644 index 0000000..757718f --- /dev/null +++ b/gas/testsuite/lib/gas-defs.exp @@ -0,0 +1,574 @@ +# Copyright (C) 1993, 1994, 1997 Free Software Foundation, Inc. + +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +# Please email any bugs, comments, and/or additions to this file to: +# DejaGnu@cygnus.com + +# This file was written by Ken Raeburn (raeburn@cygnus.com). + +proc gas_version {} { + global AS + catch "exec $AS -version < /dev/null" tmp + # Should find a way to discard constant parts, keep whatever's + # left, so the version string could be almost anything at all... + regexp "\[^\n\]* (cygnus-|)(\[-0-9.a-zA-Z-\]+)\[\r\n\].*" $tmp version cyg number + if ![info exists number] then { + return "[which $AS] (no version number)\n" + } + clone_output "[which $AS] $number\n" + unset version +} + +proc gas_run { prog as_opts redir } { + global AS + global ASFLAGS + global comp_output + global srcdir + global subdir + global host_triplet + + verbose "Executing $srcdir/lib/run $AS $ASFLAGS $as_opts $srcdir/$subdir/$prog $redir" + catch "exec $srcdir/lib/run $AS $ASFLAGS $as_opts $srcdir/$subdir/$prog $redir" comp_output + set comp_output [prune_warnings $comp_output] + verbose "output was $comp_output" + return [list $comp_output ""]; +} + +proc all_ones { args } { + foreach x $args { if [expr $x!=1] { return 0 } } + return 1 +} + +proc gas_start { prog as_opts } { + global AS + global ASFLAGS + global srcdir + global subdir + global spawn_id + + verbose "Starting $AS $ASFLAGS $as_opts $prog" 2 + catch { + spawn -noecho -nottycopy $srcdir/lib/run $AS $ASFLAGS $as_opts $srcdir/$subdir/$prog + } foo + if ![regexp {^[0-9]+} $foo] then { + perror "Can't run $subdir/$prog: $foo" + } +} + +proc gas_finish { } { + global spawn_id + + catch "close" + catch "wait" +} + +proc want_no_output { testname } { + global comp_output + + if ![string match "" $comp_output] then { + send_log "$comp_output\n" + verbose "$comp_output" 3 + } + if [string match "" $comp_output] then { + pass "$testname" + return 1 + } else { + fail "$testname" + return 0 + } +} + +proc gas_test_old { file as_opts testname } { + gas_run $file $as_opts "" + return [want_no_output $testname] +} + +proc gas_test { file as_opts var_opts testname } { + global comp_output + + set i 0 + foreach word $var_opts { + set ignore_stdout($i) [string match "*>" $word] + set opt($i) [string trim $word {>}] + incr i + } + set max [expr 1<<$i] + for {set i 0} {[expr $i<$max]} {incr i} { + set maybe_ignore_stdout "" + set extra_opts "" + for {set bit 0} {(1<<$bit)<$max} {incr bit} { + set num [expr 1<<$bit] + if [expr $i&$num] then { + set extra_opts "$extra_opts $opt($bit)" + if $ignore_stdout($bit) then { + set maybe_ignore_stdout ">/dev/null" + } + } + } + set extra_opts [string trim $extra_opts] + gas_run $file "$as_opts $extra_opts" $maybe_ignore_stdout + + # Should I be able to use a conditional expression here? + if [string match "" $extra_opts] then { + want_no_output $testname + } else { + want_no_output "$testname ($extra_opts)" + } + } + if [info exists errorInfo] then { + unset errorInfo + } +} + +proc gas_test_ignore_stdout { file as_opts testname } { + global comp_output + + gas_run $file $as_opts ">/dev/null" + want_no_output $testname +} + +proc gas_test_error { file as_opts testname } { + global comp_output + + gas_run $file $as_opts ">/dev/null" + if ![string match "" $comp_output] then { + send_log "$comp_output\n" + verbose "$comp_output" 3 + } + if [string match "" $comp_output] then { + fail "$testname" + } else { + pass "$testname" + } +} + +proc gas_exit {} {} + +proc gas_init { args } { + global target_cpu + global target_cpu_family + global target_family + global target_vendor + global target_os + global stdoptlist + + case "$target_cpu" in { + "m68???" { set target_cpu_family m68k } + "i[34]86" { set target_cpu_family i386 } + default { set target_cpu_family $target_cpu } + } + + set target_family "$target_cpu_family-$target_vendor-$target_os" + set stdoptlist "-a>" + + if ![istarget "*-*-*"] { + perror "Target name [istarget] is not a triple." + } + # Need to return an empty string. + return +} + + +# run_dump_test FILE +# +# Assemble a .s file, then run some utility on it and check the output. +# +# There should be an assembly language file named FILE.s in the test +# suite directory, and a pattern file called FILE.d. `run_dump_test' +# will assemble FILE.s, run some tool like `objdump', `objcopy', or +# `nm' on the .o file to produce textual output, and then analyze that +# with regexps. The FILE.d file specifies what program to run, and +# what to expect in its output. +# +# The FILE.d file begins with zero or more option lines, which specify +# flags to pass to the assembler, the program to run to dump the +# assembler's output, and the options it wants. The option lines have +# the syntax: +# +# # OPTION: VALUE +# +# OPTION is the name of some option, like "name" or "objdump", and +# VALUE is OPTION's value. The valid options are described below. +# Whitespace is ignored everywhere, except within VALUE. The option +# list ends with the first line that doesn't match the above syntax +# (hmm, not great for error detection). +# +# The interesting options are: +# +# name: TEST-NAME +# The name of this test, passed to DejaGNU's `pass' and `fail' +# commands. If omitted, this defaults to FILE, the root of the +# .s and .d files' names. +# +# as: FLAGS +# When assembling FILE.s, pass FLAGS to the assembler. +# +# PROG: PROGRAM-NAME +# The name of the program to run to analyze the .o file produced +# by the assembler. This can be omitted; run_dump_test will guess +# which program to run by seeing which of the flags options below +# is present. +# +# objdump: FLAGS +# nm: FLAGS +# objcopy: FLAGS +# Use the specified program to analyze the .o file, and pass it +# FLAGS, in addition to the .o file name. +# +# source: SOURCE +# Assemble the file SOURCE.s. If omitted, this defaults to FILE.s. +# This is useful if several .d files want to share a .s file. +# +# Each option may occur at most once. +# +# After the option lines come regexp lines. `run_dump_test' calls +# `regexp_diff' to compare the output of the dumping tool against the +# regexps in FILE.d. `regexp_diff' is defined later in this file; see +# further comments there. + +proc run_dump_test { name } { + global subdir srcdir + global OBJDUMP NM AS OBJCOPY + global OBJDUMPFLAGS NMFLAGS ASFLAGS OBJCOPYFLAGS + global host_triplet + + if [string match "*/*" $name] { + set file $name + set name [file tail $name] + } else { + set file "$srcdir/$subdir/$name" + } + set opt_array [slurp_options "${file}.d"] + if { $opt_array == -1 } { + unresolved $subdir/$name + return + } + set opts(as) {} + set opts(objdump) {} + set opts(nm) {} + set opts(objcopy) {} + set opts(name) {} + set opts(PROG) {} + set opts(source) {} + + foreach i $opt_array { + set opt_name [lindex $i 0] + set opt_val [lindex $i 1] + if ![info exists opts($opt_name)] { + perror "unknown option $opt_name in file $file.d" + unresolved $subdir/$name + return + } + if [string length $opts($opt_name)] { + perror "option $opt_name multiply set in $file.d" + unresolved $subdir/$name + return + } + set opts($opt_name) $opt_val + } + + if {$opts(PROG) != ""} { + switch -- $opts(PROG) { + objdump + { set program objdump } + nm + { set program nm } + objcopy + { set program objcopy } + default + { perror "unrecognized program option $opts(PROG) in $file.d" + unresolved $subdir/$name + return } + } + } else { + # Guess which program to run, by seeing which option was specified. + set program "" + foreach p {objdump objcopy nm} { + if {$opts($p) != ""} { + if {$program != ""} { + perror "ambiguous dump program in $file.d" + unresolved $subdir/$name + return + } else { + set program $p + } + } + } + if {$program == ""} { + perror "dump program unspecified in $file.d" + unresolved $subdir/$name + return + } + } + + set progopts1 $opts($program) + eval set progopts \$[string toupper $program]FLAGS + eval set binary \$[string toupper $program] + if { $opts(name) == "" } { + set testname "$subdir/$name" + } else { + set testname $opts(name) + } + + if { $opts(source) == "" } { + set sourcefile ${file}.s + } else { + set sourcefile $srcdir/$subdir/$opts(source) + } + + send_log "$AS $ASFLAGS $opts(as) -o dump.o $sourcefile\n" + catch "exec $srcdir/lib/run $AS $ASFLAGS $opts(as) -o dump.o $sourcefile" comp_output + set comp_output [prune_warnings $comp_output] + + if ![string match "" $comp_output] then { + send_log "$comp_output\n" + verbose "$comp_output" 3 + fail $testname + return + } + + if { [which $binary] == 0 } { + untested $testname + return + } + + if { $progopts1 == "" } { set $progopts1 "-r" } + verbose "running $binary $progopts $progopts1" 3 + + # Objcopy, unlike the other two, won't send its output to stdout, + # so we have to run it specially. + if { $program == "objcopy" } { + send_log "$binary $progopts $progopts1 dump.o dump.out\n" + catch "exec $binary $progopts $progopts1 dump.o dump.out" comp_output + set comp_output [prune_warnings $comp_output] + if ![string match "" $comp_output] then { + send_log "$comp_output\n" + fail $testname + return + } + } else { + send_log "$binary $progopts $progopts1 dump.o > dump.out\n" + catch "exec $binary $progopts $progopts1 dump.o > dump.out" comp_output + set comp_output [prune_warnings $comp_output] + if ![string match "" $comp_output] then { + send_log "$comp_output\n" + fail $testname + return + } + } + + verbose_eval {[file_contents "dump.out"]} 3 + if { [regexp_diff "dump.out" "${file}.d"] } then { + fail $testname + verbose "output is [file_contents "dump.out"]" 2 + return + } + + pass $testname +} + +proc slurp_options { file } { + if [catch { set f [open $file r] } x] { + #perror "couldn't open `$file': $x" + perror "$x" + return -1 + } + set opt_array {} + # whitespace expression + set ws {[ ]*} + set nws {[^ ]*} + # whitespace is ignored anywhere except within the options list; + # option names are alphabetic only + set pat "^#${ws}(\[a-zA-Z\]*)$ws:${ws}(.*)$ws\$" + while { [gets $f line] != -1 } { + set line [string trim $line] + # Whitespace here is space-tab. + if [regexp $pat $line xxx opt_name opt_val] { + # match! + lappend opt_array [list $opt_name $opt_val] + } else { + break + } + } + close $f + return $opt_array +} + +proc objdump { opts } { + global OBJDUMP + global comp_output + global host_triplet + + catch "exec $OBJDUMP $opts" comp_output + set comp_output [prune_warnings $comp_output] + verbose "objdump output=$comp_output\n" 3 +} + +proc objdump_start_no_subdir { prog opts } { + global OBJDUMP + global srcdir + global spawn_id + + verbose "Starting $OBJDUMP $opts $prog" 2 + catch { + spawn -noecho -nottyinit $srcdir/lib/run $OBJDUMP $opts $prog + } foo + if ![regexp {^[0-9]+} $foo] then { + perror "Can't run $prog: $foo" + } +} + +proc objdump_finish { } { + global spawn_id + + catch "close" + catch "wait" +} + +# Default timeout is 10 seconds, loses on a slow machine. But some +# configurations of dejagnu may override it. +if {$timeout<120} then { set timeout 120 } + +expect_after -i { + timeout { perror "timeout" } + "virtual memory exhausted" { perror "virtual memory exhausted" } + buffer_full { perror "buffer full" } + eof { perror "eof" } +} + +# regexp_diff, based on simple_diff taken from ld test suite +# compares two files line-by-line +# file1 contains strings, file2 contains regexps and #-comments +# blank lines are ignored in either file +# returns non-zero if differences exist +# +proc regexp_diff { file_1 file_2 } { + + set eof -1 + set end_1 0 + set end_2 0 + set differences 0 + set diff_pass 0 + + if [file exists $file_1] then { + set file_a [open $file_1 r] + } else { + warning "$file_1 doesn't exist" + return 1 + } + + if [file exists $file_2] then { + set file_b [open $file_2 r] + } else { + fail "$file_2 doesn't exist" + close $file_a + return 1 + } + + verbose " Regexp-diff'ing: $file_1 $file_2" 2 + + while { 1 } { + set line_a "" + set line_b "" + while { [string length $line_a] == 0 } { + if { [gets $file_a line_a] == $eof } { + set end_1 1 + break + } + } + while { [string length $line_b] == 0 || [string match "#*" $line_b] } { + if [ string match "#pass" $line_b ] { + set end_2 1 + set diff_pass 1 + break + } + if { [gets $file_b line_b] == $eof } { + set end_2 1 + break + } + } + + if { $diff_pass } { + break + } elseif { $end_1 && $end_2 } { + break + } elseif { $end_1 } { + send_log "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1\n" + verbose "extra regexps in $file_2 starting with \"^$line_b$\"\nEOF from $file_1" 3 + set differences 1 + break + } elseif { $end_2 } { + send_log "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" + verbose "extra lines in $file_1 starting with \"^$line_a$\"\nEOF from $file_2\n" 3 + set differences 1 + break + } else { + verbose "regexp \"^$line_b$\"\nline \"$line_a\"" 3 + if ![regexp "^$line_b$" "$line_a"] { + send_log "regexp_diff match failure\n" + send_log "regexp \"^$line_b$\"\nline \"$line_a\"\n" + set differences 1 + break + } + } + } + + if { $differences == 0 && !$diff_pass && [eof $file_a] != [eof $file_b] } { + send_log "$file_1 and $file_2 are different lengths\n" + verbose "$file_1 and $file_2 are different lengths" 3 + set differences 1 + } + + close $file_a + close $file_b + + return $differences +} + +proc file_contents { filename } { + set file [open $filename r] + set contents [read $file] + close $file + return $contents +} + +proc verbose_eval { expr { level 1 } } { + global verbose + if $verbose>$level then { eval verbose "$expr" $level } +} + +# This definition is taken from an unreleased version of DejaGnu. Once +# that version gets released, and has been out in the world for a few +# months at least, it may be safe to delete this copy. +if ![string length [info proc prune_warnings]] { + # + # prune_warnings -- delete various system verbosities from TEXT. + # + # An example is: + # ld.so: warning: /usr/lib/libc.so.1.8.1 has older revision than expected 9 + # + # Sites with particular verbose os's may wish to override this in site.exp. + # + proc prune_warnings { text } { + # This is from sun4's. Do it for all machines for now. + # The "\\1" is to try to preserve a "\n" but only if necessary. + regsub -all "(^|\n)(ld.so: warning:\[^\n\]*\n?)+" $text "\\1" text + + # It might be tempting to get carried away and delete blank lines, etc. + # Just delete *exactly* what we're ask to, and that's it. + return $text + } +} diff --git a/gas/testsuite/lib/gas-dg.exp b/gas/testsuite/lib/gas-dg.exp new file mode 100644 index 0000000..92f7f31 --- /dev/null +++ b/gas/testsuite/lib/gas-dg.exp @@ -0,0 +1,53 @@ +# Define gas callbacks for dg.exp. + +load_lib dg.exp + +# The use of this function is still in a bit of flux. +# It should be theoretically possible to assemble, link, and run a file +# but we currently don't support that. Assembler testcases aren't usually +# that elaborate anyway. :-) + +proc gas-dg-test { prog do_what tool_flags } { + # FIXME: the gas testsuite doesn't define tmpdir. Use outdir? + set output_file "./a.out" + + switch $do_what { + "preprocess" { + } + "assemble" { + } + "link" { + } + "run" { + # This is the only place where we care if an executable was + # created or not. If it was, dg.exp will try to run it. + catch "exec rm -f $output_file" + } + default { + perror "$do_what: not a valid dg-do keyword" + return "" + } + } + + # gas_start prepends $srcdir/$subdir so we must remove it from PROG + # if present. First remove extraneous //'s. + global srcdir subdir + set dir "$srcdir/$subdir" + regsub -all "//" $dir "/" dir + regsub -all "//" $prog "/" prog + if [string match "$dir/*" $prog] { + regsub "$dir" $prog "" prog + } + + # FIXME: This should be gas_start but it doesn't set comp_output. + return [gas_run $prog $tool_flags ""] +} + +proc gas-dg-prune { system text } { + #send_user "Before:$text\n" + regsub -all "(^|\n)\[^\n\]*: Assembler messages:\[^\n\]*" $text "" text + regsub -all "(^|\n)\[^\n\]*: End of file not at end\[^\n\]*Newline inserted." $text "" text + #send_user "After:$text\n" + + return $text +} diff --git a/gas/testsuite/lib/run b/gas/testsuite/lib/run new file mode 100755 index 0000000..d4150f8 --- /dev/null +++ b/gas/testsuite/lib/run @@ -0,0 +1,2 @@ +#!/bin/sh +eval exec $@ |