-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove all usage of change_dir_locked
While usage of change_dir_locked is synchronized against itself, it's not synchronized against other relative path usage, so I'm of the opinion that it just really doesn't help in running tests. In order to prevent the problems that have been cropping up, this completely removes the function. All existing tests (except one) using it have been moved to run-pass tests where they get their own process and don't need to be synchronized with anyone else. There is one now-ignored rustpkg test because when I moved it to a run-pass test apparently run-pass isn't set up to have 'extern mod rustc' (it ends up having linkage failures).
- Loading branch information
1 parent
a241deb
commit 0af2bd8
Showing
7 changed files
with
119 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
// xfail-fast windows doesn't like 'extern mod extra' | ||
|
||
// These tests are here to exercise the functionality of the `tempfile` module. | ||
// One might expect these tests to be located in that module, but sadly they | ||
// cannot. The tests need to invoke `os::change_dir` which cannot be done in the | ||
// normal test infrastructure. If the tests change the current working | ||
// directory, then *all* tests which require relative paths suddenly break b/c | ||
// they're in a different location than before. Hence, these tests are all run | ||
// serially here. | ||
|
||
extern mod extra; | ||
|
||
use extra::tempfile::mkdtemp; | ||
use std::os; | ||
use std::libc::consts::os::posix88::{S_IRUSR, S_IWUSR, S_IXUSR}; | ||
|
||
fn test_mkdtemp() { | ||
let p = mkdtemp(&Path("."), "foobar").unwrap(); | ||
os::remove_dir(&p); | ||
assert!(p.to_str().ends_with("foobar")); | ||
} | ||
|
||
// Ideally these would be in std::os but then core would need | ||
// to depend on std | ||
fn recursive_mkdir_rel() { | ||
let path = Path("frob"); | ||
debug!("recursive_mkdir_rel: Making: %s in cwd %s [%?]", path.to_str(), | ||
os::getcwd().to_str(), | ||
os::path_exists(&path)); | ||
assert!(os::mkdir_recursive(&path, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
assert!(os::path_is_dir(&path)); | ||
assert!(os::mkdir_recursive(&path, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
assert!(os::path_is_dir(&path)); | ||
} | ||
|
||
fn recursive_mkdir_dot() { | ||
let dot = Path("."); | ||
assert!(os::mkdir_recursive(&dot, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
let dotdot = Path(".."); | ||
assert!(os::mkdir_recursive(&dotdot, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
} | ||
|
||
fn recursive_mkdir_rel_2() { | ||
let path = Path("./frob/baz"); | ||
debug!("recursive_mkdir_rel_2: Making: %s in cwd %s [%?]", path.to_str(), | ||
os::getcwd().to_str(), os::path_exists(&path)); | ||
assert!(os::mkdir_recursive(&path, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
assert!(os::path_is_dir(&path)); | ||
assert!(os::path_is_dir(&path.pop())); | ||
let path2 = Path("quux/blat"); | ||
debug!("recursive_mkdir_rel_2: Making: %s in cwd %s", path2.to_str(), | ||
os::getcwd().to_str()); | ||
assert!(os::mkdir_recursive(&path2, (S_IRUSR | S_IWUSR | S_IXUSR) as i32)); | ||
assert!(os::path_is_dir(&path2)); | ||
assert!(os::path_is_dir(&path2.pop())); | ||
} | ||
|
||
// Ideally this would be in core, but needs mkdtemp | ||
pub fn test_rmdir_recursive_ok() { | ||
let rwx = (S_IRUSR | S_IWUSR | S_IXUSR) as i32; | ||
|
||
let tmpdir = mkdtemp(&os::tmpdir(), "test").expect("test_rmdir_recursive_ok: \ | ||
couldn't create temp dir"); | ||
let root = tmpdir.push("foo"); | ||
|
||
debug!("making %s", root.to_str()); | ||
assert!(os::make_dir(&root, rwx)); | ||
assert!(os::make_dir(&root.push("foo"), rwx)); | ||
assert!(os::make_dir(&root.push("foo").push("bar"), rwx)); | ||
assert!(os::make_dir(&root.push("foo").push("bar").push("blat"), rwx)); | ||
assert!(os::remove_dir_recursive(&root)); | ||
assert!(!os::path_exists(&root)); | ||
assert!(!os::path_exists(&root.push("bar"))); | ||
assert!(!os::path_exists(&root.push("bar").push("blat"))); | ||
} | ||
|
||
fn in_tmpdir(f: &fn()) { | ||
let tmpdir = mkdtemp(&os::tmpdir(), "test").expect("can't make tmpdir"); | ||
assert!(os::change_dir(&tmpdir)); | ||
|
||
f(); | ||
} | ||
|
||
fn main() { | ||
in_tmpdir(test_mkdtemp); | ||
in_tmpdir(recursive_mkdir_rel); | ||
in_tmpdir(recursive_mkdir_dot); | ||
in_tmpdir(recursive_mkdir_rel_2); | ||
in_tmpdir(test_rmdir_recursive_ok); | ||
} |
0af2bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saw approval from huonw
at alexcrichton@0af2bd8
0af2bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merging alexcrichton/rust/less-changing-directories = 0af2bd8 into auto
0af2bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alexcrichton/rust/less-changing-directories = 0af2bd8 merged ok, testing candidate = 4ac10f8
0af2bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/1464
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/1467
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/573
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/573
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/1483
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/574
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/574
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/1483
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/574
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/574
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android/builds/655
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/1468
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/573
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/574
success: http://buildbot.rust-lang.org/builders/auto-bsd-64-opt/builds/1252
0af2bd8
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fast-forwarding master to auto = 4ac10f8