OSDN Git Service

2005-03-11 Andreas Tobler <a.tobler@schweiz.ch>
[pf3gnuchains/gcc-fork.git] / libjava / testsuite / lib / libjava.exp
index fb23a71..b3a16f6 100644 (file)
@@ -1,6 +1,12 @@
-# Copyright (C) 1998, 1999, 2000, 2001, 2002 Free Software Foundation
+# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation
 
-load_lib "libgloss.exp"
+proc load_gcc_lib { filename } {
+    global srcdir
+    load_file $srcdir/../../gcc/testsuite/lib/$filename
+}
+
+load_lib libgloss.exp
+load_gcc_lib target-libpath.exp
 
 # GCJ_UNDER_TEST is the compiler under test.
 
@@ -10,6 +16,28 @@ if ![info exists tmpdir] {
     set tmpdir "/tmp"
 }
 
+# This is like `prune_warnings', but it also prunes away a warning
+# from the bytecode front end that we don't care about.
+proc libjava_prune_warnings {text} {
+    set text [prune_warnings $text]
+    set tlist [split $text \n]
+    set len [llength $tlist]
+    for {set i [expr {$len - 1}]} {$i >= 2} {incr i -1} {
+       if {[string match "*unreachable bytecode*" [lindex $tlist $i]]} {
+           # Delete this line, all other unreachable warnings and the previous
+           # two lines containing the method and class.
+           set j [expr {$i - 1}]
+           while {[string match "*unreachable bytecode*" [lindex $tlist $j]]} {
+               incr j -1
+           }
+           incr j -1
+           set tlist [lreplace $tlist $j $i]
+           set i $j
+       }
+    }
+    return [join $tlist \n]
+}
+
 # This is like `target_compile' but it does some surgery to work
 # around stupid DejaGNU bugs.  In particular DejaGNU has very poor
 # quoting, so for instance a `$' will be re-evaluated at spawn time.
@@ -58,7 +86,7 @@ proc find_gcjh {} {
 }
 
 proc find_javac {} {
-    global SUN_JAVAC GCJ_UNDER_TEST env
+    global SUN_JAVAC GCJ_UNDER_TEST env libgcj_jar
     # If JDK doesn't run on your platform but some other
     # JDK-compatible javac does, you may set SUN_JAVAC to point to it.
     # One of the most important properties of a SUN_JAVAC is that it
@@ -71,7 +99,7 @@ proc find_javac {} {
        if {[info exists env(SUN_JAVAC)]} {
            set SUN_JAVAC $env(SUN_JAVAC)
        } else {
-           set SUN_JAVAC "$GCJ_UNDER_TEST -C"
+           set SUN_JAVAC "$GCJ_UNDER_TEST -C -I$libgcj_jar"
        }
     }
     return $SUN_JAVAC
@@ -87,10 +115,11 @@ proc bytecompile_file { file objdir {classpath {}} } {
     }
     set here [pwd]
     cd $dirname
+    send_log "byte compile: $javac -g [list $file] -d $objdir 2>@ stdout\n"
     if {[catch {
-       set q [eval exec "$javac [list $file] -d $objdir 2>@ stdout"]
+       set q [eval exec "$javac -g [list $file] -d $objdir 2>@ stdout"]
     } msg]} then {
-       verbose "couldn't compile $file: $msg"
+       send_log "couldn't compile $file: $msg\n"
        set r 0
     } else {
        set r 1
@@ -110,9 +139,15 @@ proc libjava_init { args } {
     global libjava_initialized libjava_uses_threads
     global GCJ_UNDER_TEST
     global TOOL_EXECUTABLE
-    global original_ld_library_path
     global env objdir
-    global env gcc_version
+    global env libgcj_jar
+    global tool_root_dir
+    global libjava_libgcc_s_path
+    global target_triplet
+
+    # We set LC_ALL and LANG to C so that we get the same error messages as expected.
+    setenv LC_ALL C
+    setenv LANG C
 
     if { $libjava_initialized == 1 } { return; }
 
@@ -128,10 +163,9 @@ proc libjava_init { args } {
        }
     }
 
-    # Determine the version so we can find the libgcj jar file.
-    set text [eval exec "$GCJ_UNDER_TEST --version 2>@ stdout"]
-    regexp -- "gcj \[^ \]+ (\[^ \]+) .*" $text ignore gcc_version
-    verbose "jar file is libgcj-$gcc_version.jar"
+    # Find the libgcj jar file.
+    set libgcj_jar [glob $objdir/../libgcj-*.jar]
+    verbose "jar file is $libgcj_jar"
 
     # FIXME: This finds libgcj.spec for the default multilib.
     # If thread models differ between multilibs, this has to be moved
@@ -148,16 +182,6 @@ proc libjava_init { args } {
     # Always set encoding used by gcj.
     append GCJ_UNDER_TEST " --encoding=UTF-8"
 
-    if [info exists env(LD_LIBRARY_PATH)] {
-       set original_ld_library_path $env(LD_LIBRARY_PATH)
-    } else {
-       if [info exists env(SHLIB_PATH)] {
-           set original_ld_library_path $env(SHLIB_PATH)
-       } else {
-           set original_ld_library_path ""
-       }
-    }
-
     set wrapper_file "";
     set wrap_compile_flags "";
     if [target_info exists needs_status_wrapper] {
@@ -170,6 +194,36 @@ proc libjava_init { args } {
        }
     }
 
+    # Finally, add the gcc build directory so that we can find the
+    # shared libgcc.  This, like much of dejagnu, is hideous.
+    set libjava_libgcc_s_path {}
+
+    if { [istarget "*-*-darwin*"] } {
+       set so_extension "dylib"
+    } else {
+       set so_extension "so"
+    }
+    set gccdir [lookfor_file $tool_root_dir gcc/libgcc_s.${so_extension}]
+    if {$gccdir != ""} {
+       set gccdir [file dirname $gccdir]
+       lappend libjava_libgcc_s_path $gccdir
+       verbose "libjava_libgcc_s_path = $libjava_libgcc_s_path"
+       set compiler ${gccdir}/xgcc
+       if { [is_remote host] == 0 && [which $compiler] != 0 } {
+           foreach i "[exec $compiler --print-multi-lib]" {
+               set mldir ""
+               regexp -- "\[a-z0-9=/\.-\]*;" $i mldir
+               set mldir [string trimright $mldir "\;@"]
+               if { "$mldir" == "." } {
+                   continue
+               }
+               if { [llength [glob -nocomplain ${gccdir}/${mldir}/libgcc_s*.${so_extension}.*]] >= 1 } {
+                   lappend libjava_libgcc_s_path "${gccdir}/${mldir}"
+               }
+           }
+       }
+    }
+
     set libjava_initialized 1
 }
 
@@ -181,28 +235,31 @@ proc libjava_init { args } {
 # paths.  However we can't simply use those libraries; we still need
 # libtool for linking.
 # Don't return the the lib${name}.la files here, since this causes the
-# libraries to be linked twice: once as lib${name}.so and another time
+# libraries to be linked twice: once as lib${name}.so/dylib and another time
 # via gcj's implicit -l${name}.  This is both unnecessary and causes the
 # Solaris ld to warn: attempted multiple inclusion of file.  This warning
 # is not ignored by the dejagnu framework and cannot be disabled.
 proc libjava_find_lib {dir name} {
     global base_dir
     set gp [get_multilibs]
-    foreach sub {.libs _libs} {
-       if {$gp != ""} {
-           if {[file exists $gp/$dir/$sub/lib${name}.a]} then {
-               # Just return the `-L' option.  The library itself
-               # will be picked up via the spec file.
-               return "-L$gp/$dir/$sub"
+    foreach extension {so dll a} {
+       foreach sub {.libs _libs} {
+           if {$gp != ""} {
+               if {[file exists $gp/$dir/$sub/lib${name}.${extension}]} then {
+                   # Just return the `-L' option.  The library itself
+                   # will be picked up via the spec file.
+                   return "-L$gp/$dir/$sub"
+               }
+           }
+           # Just return the `-L' option.  The library itself will be
+           # picked up via the spec file.
+           set lib [findfile \
+                      $base_dir/../../$dir/$sub/lib${name}.${extension} \
+                      "-L$base_dir/../../$dir/$sub" \
+                      ""]
+           if {$lib != ""} {
+               return $lib
            }
-       }
-       # Just return the `-L' option.  The library itself will be
-       # picked up via the spec file.
-       set lib [findfile $base_dir/../../$dir/$sub/lib${name}.a \
-                  "-L$base_dir/../../$dir/$sub" \
-                  ""]
-       if {$lib != ""} {
-           return $lib
        }
     }
     return ""
@@ -213,12 +270,18 @@ proc libjava_find_lib {dir name} {
 # is used with -B.
 proc libjava_find_spec {} {
     global objdir
-    set gp [get_multilibs]
+    return "$objdir/../"
+}
 
-    if {[file exists $gp/libjava/libgcj.spec]} then {
-       return "$gp/libjava/"
+# Find `gij'.  Return empty string if not found.
+proc libjava_find_gij {} {
+    global base_dir objdir
+
+    set gijdir [lookfor_file [get_multilibs] libjava];
+    if {! [file exists $gijdir/gij]} {
+       return ""
     }
-    return "$objdir/../"
+    return $gijdir/gij
 }
 
 # Remove a bunch of files.
@@ -241,9 +304,6 @@ proc gcj_cleanup {args} {
 proc libjava_arguments {{mode compile}} {
     global base_dir
     global LIBJAVA
-    global LIBGC
-    global LIBQTHREADS
-    global LIBZ
     global srcdir subdir objdir
     global TOOL_OPTIONS
     global GCJ_UNDER_TEST
@@ -251,7 +311,11 @@ proc libjava_arguments {{mode compile}} {
     global runtests
     global env
     global tool_root_dir
-    global gcc_version
+    global libgcj_jar
+    global libjava_libgcc_s_path
+    global libjava_ld_library_path
+    global ld_library_path
+    global target_triplet
 
     if [info exists LIBJAVA] {
        set libjava $LIBJAVA;
@@ -259,39 +323,14 @@ proc libjava_arguments {{mode compile}} {
        set libjava [libjava_find_lib libjava gcj]
     }
 
-    if [info exists LIBGC] {
-       set libgc $LIBGC;
-    } else {
-       set libgc [libjava_find_lib boehm-gc gcjgc]
-    }
-
-    if [info exists LIBQTHREADS] {
-       set libqthreads $LIBQTHREADS
-    } else {
-       set libqthreads [libjava_find_lib qthreads gcjcoop]
-    }
-
-    if [info exists LIBZ] {
-       set libz $LIBZ
-    } else {
-       set libz [libjava_find_lib zlib zgcj]
-    }
-
-    # FIXME: there's no way to determine whether -lpthread is
-    # required.  We should get this info from configure, or it should
-    # just be in the compiler driver.
-
     verbose "using LIBJAVA = $libjava" 2
-    verbose "using LIBGC = $libgc" 2
-    verbose "using LIBQTHREADS = $libqthreads" 2
-    verbose "using LIBZ = $libz" 2
     set args ""
 
     # Basically we want to build up a colon separated path list from
     # the value of $libjava.
 
-    set lpath {}
-    foreach dir [list $libjava $libgc $libz] {
+    set lpath "."
+    foreach dir [list $libjava] {
        foreach item [split $dir " "] {
            switch -glob -- $item {
                "-L*" {
@@ -301,39 +340,38 @@ proc libjava_arguments {{mode compile}} {
        }
     }
 
-    # Finally, add the gcc build directory so that we can find the
-    # shared libgcc.  This, like much of dejagnu, is hideous.
-    set gccdir [lookfor_file $tool_root_dir gcc/libgcc_s.so]
-    if {$gccdir != ""} {
-       lappend lpath [file dirname $gccdir]
-    }
-
+    set lpath [concat $lpath $libjava_libgcc_s_path]
+    verbose "lpath = $lpath ; libgcc_s_path = $libjava_libgcc_s_path"
     set ld_library_path [join $lpath :]
+    set libjava_ld_library_path "$ld_library_path"
 
     # That's enough to make things work for the normal case.
     # If we wanted to handle an arbitrary value of libjava,
     # then we'd have to do a lot more work.
 
-    # Set variables the dynamic linker looks at.
-    global original_ld_library_path
-    setenv LD_LIBRARY_PATH "$ld_library_path:$original_ld_library_path"
-    setenv SHLIB_PATH "$ld_library_path:$original_ld_library_path"
+    set_ld_library_path_env_vars
+    if [info exists env(LD_LIBRARY_PATH)] {
+       verbose "LD_LIBRARY_PATH = $env(LD_LIBRARY_PATH)"
+    }
 
-    verbose "LD_LIBRARY_PATH = $env(LD_LIBRARY_PATH)"
+    # Determine CLASSPATH separator
+    if { [string match "i?86-pc-mingw32*" $target_triplet] } {
+       set sep ";"
+    } else {
+       set sep ":"
+    }
 
     # Set the CLASSPATH environment variable
-    verbose "CLASSPATH is .:$srcdir/$subdir:$objdir:$objdir/../libgcj-$gcc_version.jar"
     global env
-    set env(CLASSPATH) ".:$srcdir/$subdir:$objdir:$objdir/../libgcj-$gcc_version.jar"
+    set env(CLASSPATH) \
+       [join [list . $srcdir/$subdir $objdir $libgcj_jar] $sep]
+    verbose "CLASSPATH is $env(CLASSPATH)"
 
     if {$mode == "link"} {
-       global wrapper_file wrap_compile_flags;
-       lappend args "additional_flags=$wrap_compile_flags";
-       lappend args "libs=$wrapper_file";
-       lappend args "libs=$libjava";
-       lappend args "libs=$libgc";
-       lappend args "libs=$libqthreads"
-       lappend args "libs=$libz"
+       global wrapper_file wrap_compile_flags
+       lappend args "additional_flags=$wrap_compile_flags"
+       lappend args "libs=$wrapper_file"
+       lappend args "libs=$libjava"
        lappend args debug
     }
 
@@ -368,8 +406,15 @@ proc libjava_arguments {{mode compile}} {
     }
 
     # Avoid libtool wrapper scripts when possible.
+    # but not if libtool warnings results in FAILs
     if {$mode == "link"} {
-        lappend args "additional_flags=-no-install"
+       if {! [istarget "*-*-cygwin*"] && ! [istarget "*-*-mingw*"] } {
+           lappend args "additional_flags=-no-install"
+       }
+       if { [istarget "*-*-darwin*"] } {
+           lappend args "additional_flags=-bind_at_load"
+           lappend args "additional_flags=-multiply_defined suppress"
+       }
     }
 
     return $args
@@ -383,8 +428,8 @@ proc gcj_link {program main files {options {}}} {
        eval lappend arguments $options
     }
     lappend arguments "additional_flags=--main=$main"
-    set x [prune_warnings [libjava_tcompile $files $program executable \
-                            $arguments]]
+    set x [libjava_prune_warnings \
+            [libjava_tcompile $files $program executable $arguments]]
     if {$x != ""} {
        verbose "link failure: $x" 2
        fail "linking $program"
@@ -397,14 +442,141 @@ proc gcj_link {program main files {options {}}} {
     return 1
 }
 
+# Invoke the program and see what happens.  Return 0 on failure.
+proc gcj_invoke {program expectFile ld_library_additions} {
+  global env
+  global libjava_ld_library_path
+  global ld_library_path
+
+  set ld_library_path "$libjava_ld_library_path"
+  if {[llength $ld_library_additions] > 0} {
+    append ld_library_path :[join $ld_library_additions :]
+  }
+
+  set_ld_library_path_env_vars
+  if [info exists env(LD_LIBRARY_PATH)] {
+    verbose "LD_LIBRARY_PATH=$env(LD_LIBRARY_PATH)"
+  }
+
+  set result [libjava_load ./$program]
+  set status [lindex $result 0]
+  set output [lindex $result 1]
+
+  # Restore setting
+  restore_ld_library_path_env_vars
+
+  if {$status != "pass"} {
+    verbose "got $output"
+    fail "$program run"
+    untested "$program output"
+    return 0
+  }
+
+  set id [open $expectFile r]
+  set expected [read $id]
+  close $id
+
+  if {! [string compare $output $expected]} {
+    pass "$program output"
+    return 1
+  } else {
+    fail "$program output"
+    return 0
+  }
+}
+
+# Invoke a program and check its output.  EXECUTABLE is the program;
+# ARGS are the arguments to the program.  Returns 1 if tests passed
+# (or things were left untested), 0 otherwise.
+proc libjava_invoke {errname testName optName executable inpfile resultfile
+                     ld_library_additions args} {
+    global env
+    global libjava_ld_library_path
+    global ld_library_path
+
+    set ld_library_path "$libjava_ld_library_path"
+    if {[llength $ld_library_additions] > 0} {
+       append ld_library_path :[join $ld_library_additions :]
+    }
+
+    set_ld_library_path_env_vars
+    if [info exists env(LD_LIBRARY_PATH)] {
+       verbose "LD_LIBRARY_PATH=$env(LD_LIBRARY_PATH)"
+    }
+
+    upvar $optName opts
+
+    if {[info exists opts(no-exec)]} {
+       if {[info exists opts(need-threads)]} {
+           # This means we wanted to try to run it but we couldn't
+           # because threads aren't supported.  So we have to
+           # generate an `untested'.
+           untested "$errname execution - $testName"
+           untested "$errname output - $testName"
+       }
+       return 1
+    }
+
+    set result [libjava_load $executable $args "$inpfile"]
+    set status [lindex $result 0]
+    set output [lindex $result 1]
+
+    # Restore LD_LIBRARY_PATH setting.
+    restore_ld_library_path_env_vars
+
+    if {[info exists opts(xfail-exec)]} then {
+       setup_xfail *-*-*
+    }
+    $status "$errname execution - $testName"
+    if { $status != "pass" } {
+       untested "$errname output - $testName"
+       return 0
+    }
+
+    verbose "resultfile is $resultfile"
+    set id [open $resultfile r]
+    set expected ""
+    append expected [read $id]
+    regsub -all "\r" "$output" "" output
+    regsub "\n*$" $expected "" expected
+    regsub "\n*$" $output "" output
+    regsub "^\n*" $expected "" expected
+    regsub "^\n*" $output "" output
+    regsub -all "\[ \t\]\[ \t\]*" $expected " " expected
+    regsub -all "\[ \t\]*\n\n*" $expected "\n" expected
+    regsub -all "\[ \t\]\[ \t\]*" $output " " output
+    regsub -all "\[ \t\]*\n\n*" $output "\n" output
+    verbose "expected is $expected"
+    verbose "actual is $output"
+    set passed 0
+    if {[info exists opts(regexp_match)]} {
+       if [regexp $expected $output] {
+           set passed 1
+       }
+    } else {
+       if { $expected == $output } {
+           set passed 1
+       }
+    }
+    if {[info exists opts(xfail-output)]} {
+       setup_xfail *-*-*
+    }
+    if { $passed == 1 } {
+       pass "$errname output - $testName"
+    } else {
+       fail "$errname output - $testName"
+    }
+    close $id
+
+    return $passed
+}
+
 #
 # Run the test specified by srcfile and resultfile. compile_args and
 # exec_args are options telling this proc how to work.
 #
 proc test_libjava_from_source { options srcfile compile_args inpfile resultfile exec_args } {
     global base_dir
-    global LIBJAVA
-    global LIBGC
     global srcdir subdir objdir
     global TOOL_OPTIONS
     global GCJ_UNDER_TEST
@@ -464,7 +636,7 @@ proc test_libjava_from_source { options srcfile compile_args inpfile resultfile
 
     set removeList [list $executable]
 
-    set x [prune_warnings \
+    set x [libjava_prune_warnings \
             [libjava_tcompile $srcfile "$executable" $target $args]]
     if {[info exists opts(xfail-gcj)]} {
        setup_xfail *-*-*
@@ -493,72 +665,15 @@ proc test_libjava_from_source { options srcfile compile_args inpfile resultfile
     }
     pass "$errname compilation from source"
 
-    if {[info exists opts(no-exec)]} {
-       if {[info exists opts(need-threads)]} {
-           # This means we wanted to try to run it but we couldn't
-           # because threads aren't supported.  So we have to
-           # generate an `untested'.
-           untested "$errname execution from source compiled test"
-           untested "$errname output from source compiled test"
-       }
-       eval gcj_cleanup $removeList
-       return
-    }
-    if {[info exists opts(no-link)]} {
-       eval gcj_cleanup $removeList
-       return
-    }
-
-    set result [libjava_load $executable "" "$inpfile"];
-    set status [lindex $result 0];
-    set output [lindex $result 1];
-    if {[info exists opts(xfail-exec)]} then {
-       setup_xfail *-*-*
-    }
-    $status "$errname execution from source compiled test"
-    if { $status != "pass" } {
-       untested "$errname output from source compiled test"
-       return;
-    }
-
-    verbose "resultfile is $resultfile"
-    set id [open $resultfile r];
-    set expected ""
-    append expected [read $id];
-    regsub -all "\r" "$output" "" output;
-    regsub "\n*$" $expected "" expected
-    regsub "\n*$" $output "" output
-    regsub "^\n*" $expected "" expected
-    regsub "^\n*" $output "" output
-    regsub -all "\[ \t\]\[ \t\]*" $expected " " expected
-    regsub -all "\[ \t\]*\n\n*" $expected "\n" expected
-    regsub -all "\[ \t\]\[ \t\]*" $output " " output
-    regsub -all "\[ \t\]*\n\n*" $output "\n" output
-    verbose "expected is $expected"
-    verbose "actual is $output"
-    set passed 0;
-    if {$options == "regexp_match"} {
-       if [regexp $expected $output] {
-           set passed 1;
-       }
-    } else {
-       if { $expected == $output } {
-           set passed 1;
-       }
-    }
-    if {[info exists opts(xfail-output)]} {
-       setup_xfail *-*-*
-    }
+    # Set up the options the way they are expected by libjava_invoke.
     if {[info exists opts(xfail-source-output)]} {
-       setup_xfail *-*-*
+       set opts(xfail-output) x
     }
-    if { $passed == 1 } {
-       pass "$errname output from source compiled test"
+    if {[libjava_invoke $errname "source compiled test" opts $executable \
+          $inpfile $resultfile ""]} {
+       # Everything ok, so clean up.
        eval gcj_cleanup $removeList
-    } else {
-       fail "$errname output from source compiled test"
     }
-    close $id;
 }
 
 #
@@ -567,13 +682,12 @@ proc test_libjava_from_source { options srcfile compile_args inpfile resultfile
 #
 proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile exec_args } {
     global base_dir
-    global LIBJAVA
-    global LIBGC
     global srcdir subdir objdir
     global TOOL_OPTIONS
     global GCJ_UNDER_TEST
     global tmpdir
     global runtests
+    global INTERPRETER
 
     # Make opts into an array.
     set opts(_) x
@@ -634,11 +748,11 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
     set jvscan [find_jvscan]
     verbose "jvscan is $jvscan"
     set main_name [string trim \
-                    [prune_warnings \
+                    [libjava_prune_warnings \
                        [lindex [local_exec "$jvscan --encoding=UTF-8 $srcfile --print-main" "" "" 300] 1]]]
     verbose "main name is $main_name"
     set class_out [string trim \
-                    [prune_warnings \
+                    [libjava_prune_warnings \
                        [lindex [local_exec "$jvscan --encoding=UTF-8 $srcfile --list-class" "" "" 300] 1]]]
     verbose "class list is $class_out"
 
@@ -680,10 +794,23 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
     } else {
        set type executable
        lappend largs "additional_flags=--main=$main_name"
-       set executable "${objdir}/$main_name"
+       # DOS/win32 targets default to .exe if no suffix is given
+        # We then try to delete a file that doesn't exist.  It is
+       # simpler to add the suffix everywhere.
+       set executable "${objdir}/${main_name}.exe"
        set mode link
     }
 
+    # We purposely ignore errors here; we still want to run the other
+    # appropriate tests.
+    set gij [libjava_find_gij]
+    # libjava_find_gij will return "" if it couldn't find the
+    # program; in this case we want to skip the test.
+    if {$INTERPRETER == "yes" && $gij != ""} {
+       libjava_invoke $errname "gij test" opts $gij \
+         $inpfile $resultfile "" $main_name
+    }
+
     # Initial arguments.
     set args [libjava_arguments $mode]
     eval lappend args $largs
@@ -703,8 +830,10 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
     if {$mode == "compile"} {
        foreach c_file $class_files {
            set executable [file rootname [file tail $c_file]].o
-           set x [prune_warnings \
-                    [libjava_tcompile $c_file "$executable" $type $args]]
+           # Don't write files which contain $ chars.
+           regsub -all "\\$" $executable "\^" executable
+           set x [libjava_prune_warnings \
+                    [libjava_tcompile '$c_file' "$executable" $type $args]]
            lappend removeList $executable
            if {$x != ""} {
                break
@@ -719,7 +848,7 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
            set hack "$hack $stupid"
        }
        lappend removeList $executable
-       set x [prune_warnings \
+       set x [libjava_prune_warnings \
                 [libjava_tcompile $hack "$executable" $type $args]]
     }
     if {[info exists opts(xfail-byte)]} {
@@ -737,65 +866,15 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
     }
     pass "$errname compilation from bytecode"
 
-    if {[info exists opts(no-exec)]} {
-       if {[info exists opts(need-threads)]} {
-           untested "$errname execution from bytecode->native test"
-           untested "$errname output from bytecode->native test"
-       }
-       eval gcj_cleanup $removeList
-       return
-    }
-
-    set result [libjava_load $executable "" "$inpfile"];
-    set status [lindex $result 0];
-    set output [lindex $result 1];
-    if {[info exists opts(xfail-exec)]} {
-       setup_xfail *-*-*
-    }
-    $status "$errname execution from bytecode->native test"
-    if { $status != "pass" } {
-       untested "$errname output from bytecode->native test"
-       return
-    }
-
-    verbose "resultfile is $resultfile"
-    set id [open $resultfile r];
-    set expected ""
-    append expected [read $id];
-    regsub -all "\r" "$output" "" output;
-    regsub "\n*$" $expected "" expected
-    regsub "\n*$" $output "" output
-    regsub "^\n*" $expected "" expected
-    regsub "^\n*" $output "" output
-    regsub -all "\[ \t\]\[ \t\]*" $expected " " expected
-    regsub -all "\[ \t\]*\n\n*" $expected "\n" expected
-    regsub -all "\[ \t\]\[ \t\]*" $output " " output
-    regsub -all "\[ \t\]*\n\n*" $output "\n" output
-    verbose "expected is $expected"
-    verbose "actual is $output"
-    set passed 0;
-    if {[info exists opts(xfail-output)]} {
-       setup_xfail *-*-*
-    }
+    # Set up the options the way they are expected by libjava_invoke.
     if {[info exists opts(xfail-byte-output)]} {
-       setup_xfail *-*-*
+       set opts(xfail-output) x
     }
-    if {$options == "regexp_match"} {
-       if [regexp $expected $output] {
-           set passed 1;
-       }
-    } else {
-       if { $expected == $output } {
-           set passed 1;
-       }
-    }
-    if { $passed == 1 } {
-       pass "$errname output from bytecode->native test"
+    if {[libjava_invoke $errname "bytecode->native test" opts $executable \
+          $inpfile $resultfile ""]} {
+       # Everything ok, so clean up.
        eval gcj_cleanup $removeList
-    } else {
-       fail "$errname output from bytecode->native test"
     }
-    close $id;
 }
 
 #
@@ -808,7 +887,7 @@ proc test_libjava_from_javac { options srcfile compile_args inpfile resultfile e
 #   `xfail-gcjC'  compilation with gcj -C will fail
 #   `shouldfail'  compilation from source is supposed to fail
 #                 This is different from xfail, which marks a known
-#                 failure that we just havne't fixed.
+#                 failure that we just haven't fixed.
 #                 A compilation marked this way should fail with any
 #                 front end.
 #   `xfail-byte'  compilation from bytecode will fail
@@ -836,20 +915,6 @@ proc default_libjava_version {} {
 proc default_libjava_start { } {
 }
 
-# On IRIX 6, we have to set variables akin to LD_LIBRARY_PATH, but
-# called LD_LIBRARYN32_PATH (for the N32 ABI) and LD_LIBRARY64_PATH
-# (for the 64-bit ABI).  The right way to do this would be to modify
-# unix.exp -- but that's not an option since it's part of DejaGNU
-# proper, so we do it here, by trickery.  We really only need to do 
-# this on IRIX, but it shouldn't hurt to do it anywhere else.
-
-proc ${tool}_set_ld_library_path { name element op } {
-  setenv LD_LIBRARYN32_PATH [getenv LD_LIBRARY_PATH]
-  setenv LD_LIBRARY64_PATH [getenv LD_LIBRARY_PATH]
-}
-
-trace variable env(LD_LIBRARY_PATH) w ${tool}_set_ld_library_path
-
 # Local Variables:
 # tcl-indent-level:4
 # End: