rust/src/test/compiletest/util.rs

31 lines
737 B
Rust
Raw Normal View History

import std::option;
import std::generic_os::getenv;
2011-08-11 21:14:38 -05:00
import std::io;
import std::str;
import common::config;
fn make_new_path(path: str) -> str {
// Windows just uses PATH as the library search path, so we have to
// maintain the current value while adding our own
alt getenv(lib_path_env_var()) {
2011-09-02 17:34:58 -05:00
option::some(curr) { #fmt["%s:%s", path, curr] }
option::none. { path }
}
}
#[cfg(target_os = "linux")]
2011-09-02 17:34:58 -05:00
fn lib_path_env_var() -> str { "LD_LIBRARY_PATH" }
#[cfg(target_os = "macos")]
2011-09-02 17:34:58 -05:00
fn lib_path_env_var() -> str { "DYLD_LIBRARY_PATH" }
#[cfg(target_os = "win32")]
2011-09-02 17:34:58 -05:00
fn lib_path_env_var() -> str { "PATH" }
fn logv(config: config, s: str) {
log s;
2011-09-02 17:34:58 -05:00
if config.verbose { io::stdout().write_line(s); }
}