Add fs::rmdir() and tempfile/gen_str() tests.

This commit is contained in:
Elly Jones
2011-11-22 17:09:35 -05:00
committed by Brian Anderson
parent d468af59ed
commit 9dd4789d80
7 changed files with 53 additions and 1 deletions

View File

@@ -52,6 +52,7 @@ native mod libc {
fn waitpid(pid: pid_t, &status: c_int, options: c_int) -> pid_t;
fn readlink(path: str::sbuf, buf: str::sbuf, bufsize: size_t) -> ssize_t;
fn mkdir(path: str::sbuf, mode: int) -> int;
fn rmdir(path: str::sbuf) -> int;
}
mod libc_constants {