2004-04-30 H.J. Lu <hongjiu.lu@intel.com>
[deliverable/binutils-gdb.git] / gas / testsuite / gas / elf / elf.exp
index 98684dd7d5a26f3feea39868d4254f9f17c06a3c..e087fba0b4c5b0ea5ba3503634337833e3bdb650 100644 (file)
@@ -2,20 +2,59 @@
 # elf tests
 #
 
+proc run_list_test { name suffix opts readelf_pipe } {
+    global READELF
+    global srcdir subdir
+    set testname "elf $name list"
+    set file $srcdir/$subdir/$name
+    gas_run ${name}.s "$opts -o dump.o" ">&dump.out"
+    if { ![string match "" $opts]
+         && [regexp_diff "dump.out" "${file}.l"] } then {
+       fail $testname
+       verbose "output is [file_contents "dump.out"]" 2
+       return
+    }
+    send_log "$READELF -s dump.o > dump.out\n"
+    catch "exec $READELF -s dump.o $readelf_pipe > dump.out\n" 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}.e${suffix}"] } then {
+       fail $testname
+       verbose "output is [file_contents "dump.out"]" 2
+       return
+    }
+    pass $testname
+}
+
 # We're testing bits in obj-elf -- don't run on anything else.
 if { ([istarget "*-*-elf*"]            
       || [istarget "*-*-linux*"]
       || [istarget "sparc*-*-solaris*"]
       || [istarget "mips*-*-irix6*"])
      && ![istarget *-*-linux*aout*]
+     && ![istarget *-*-linux*coff*]
      && ![istarget *-*-linux*oldld*]
+     && ![istarget sh64*-*-linux*]
 } then {
-
-    # FIXME: This doesn't work for MIPS targets because of the .reginfo
-    # and .mdebug sections.
-    setup_xfail mips*-*-*
+    set target_machine ""
+    if {[istarget "mips*-*-*"]} then {
+       set target_machine -mips
+    }
+    if {[istarget m32r*-*-*]} then {
+       set target_machine -m32r
+    }
+    run_dump_test "ehopt0"
+    run_dump_test "group0a" 
+    run_dump_test "group0b" 
+    run_list_test "group1" "" "" ""
     run_dump_test "section0" 
-
-    setup_xfail mips*-*-*
     run_dump_test "section1" 
+    run_list_test "section2" "$target_machine" "-al" ""
+    run_dump_test "section3" 
+    run_dump_test "symver" 
+    run_list_test "type" "" "" "| grep \"1 \\\[FONT\\\]\""
 }
This page took 0.026123 seconds and 4 git commands to generate.