about summary refs log tree commit diff
path: root/src/compiletest
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-10-19 16:50:03 -0700
committerBrian Anderson <banderson@mozilla.com>2011-10-20 18:23:48 -0700
commitc10eb221da59f6fabe308e79d11df5b86855da5a (patch)
tree0072e619f558393a431152a34e84f1acdeb1c261 /src/compiletest
parent5c38f7dfd7ccf2e57913500f8a7548b2b8de1932 (diff)
Get windows working under the bare function regime
Had to ignore some task failure tests due to the current implementation
of spawn which guarantees that there's always something in the spawned
task that needs to be unwound.

Fixed some win-specific build problems.
Diffstat (limited to 'src/compiletest')
-rw-r--r--src/compiletest/procsrv.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs
index 4083029c4f5..f3c7bc9406c 100644
--- a/src/compiletest/procsrv.rs
+++ b/src/compiletest/procsrv.rs
@@ -164,7 +164,7 @@ fn maybe_with_lib_path<@T>(_path: str, f: fn@() -> T) -> T {
     f()
 }
 
-fn with_lib_path<@T>(path: str, f: fn() -> T) -> T {
+fn with_lib_path<@T>(path: str, f: fn@() -> T) -> T {
     let maybe_oldpath = getenv(util::lib_path_env_var());
     append_lib_path(path);
     let res = f();