pub use self::Mode::*;
use std::env;
use std::fmt;
use std::str::FromStr;
use std::path::PathBuf;
use rustc;
#[derive(Clone, Copy, PartialEq, Debug)]
pub enum Mode {
CompileFail,
ParseFail,
RunFail,
RunPass,
RunPassValgrind,
Pretty,
DebugInfoGdb,
DebugInfoLldb,
Codegen,
Rustdoc,
CodegenUnits,
Incremental,
RunMake,
Ui,
MirOpt,
}
impl FromStr for Mode {
type Err = ();
fn from_str(s: &str) -> Result<Mode, ()> {
match s {
"compile-fail" => Ok(CompileFail),
"parse-fail" => Ok(ParseFail),
"run-fail" => Ok(RunFail),
"run-pass" => Ok(RunPass),
"run-pass-valgrind" => Ok(RunPassValgrind),
"pretty" => Ok(Pretty),
"debuginfo-lldb" => Ok(DebugInfoLldb),
"debuginfo-gdb" => Ok(DebugInfoGdb),
"codegen" => Ok(Codegen),
"rustdoc" => Ok(Rustdoc),
"codegen-units" => Ok(CodegenUnits),
"incremental" => Ok(Incremental),
"run-make" => Ok(RunMake),
"ui" => Ok(Ui),
"mir-opt" => Ok(MirOpt),
_ => Err(()),
}
}
}
impl fmt::Display for Mode {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(match *self {
CompileFail => "compile-fail",
ParseFail => "parse-fail",
RunFail => "run-fail",
RunPass => "run-pass",
RunPassValgrind => "run-pass-valgrind",
Pretty => "pretty",
DebugInfoGdb => "debuginfo-gdb",
DebugInfoLldb => "debuginfo-lldb",
Codegen => "codegen",
Rustdoc => "rustdoc",
CodegenUnits => "codegen-units",
Incremental => "incremental",
RunMake => "run-make",
Ui => "ui",
MirOpt => "mir-opt",
},
f)
}
}
#[derive(Clone)]
pub struct Config {
pub compile_lib_path: PathBuf,
pub run_lib_path: PathBuf,
pub rustc_path: PathBuf,
pub rustdoc_path: PathBuf,
pub lldb_python: String,
pub docck_python: String,
pub llvm_filecheck: Option<PathBuf>,
pub valgrind_path: Option<String>,
pub force_valgrind: bool,
pub src_base: PathBuf,
pub build_base: PathBuf,
pub stage_id: String,
pub mode: Mode,
pub run_ignored: bool,
pub filter: Option<String>,
pub filter_exact: bool,
pub logfile: Option<PathBuf>,
pub runtool: Option<String>,
pub host_rustcflags: Option<String>,
pub target_rustcflags: Option<String>,
pub target: String,
pub host: String,
pub gdb_version: Option<String>,
pub lldb_version: Option<String>,
pub llvm_version: Option<String>,
pub android_cross_path: PathBuf,
pub adb_path: String,
pub adb_test_dir: String,
pub adb_device_status: bool,
pub lldb_python_dir: Option<String>,
pub verbose: bool,
pub quiet: bool,
pub cc: String,
pub cxx: String,
pub cflags: String,
pub llvm_components: String,
pub llvm_cxxflags: String,
pub nodejs: Option<String>,
}
impl Config {
pub fn link_deps(&mut self) {
let varname = if cfg!(windows) { "PATH" }
else if cfg!(target_os = "macos") { "DYLD_LIBRARY_PATH" }
else { "LD_LIBRARY_PATH" };
let lib_paths = env::var(varname).unwrap_or_else(|e| {
panic!("Cannot link to dependencies. Problem with env var '{}': {:?}", varname, e)
});
let mut flags = self.target_rustcflags.take().unwrap_or_else(String::new);
for p in env::split_paths(&lib_paths) {
flags += " -L ";
flags += p.to_str().unwrap(); }
self.target_rustcflags = Some(flags);
}
#[cfg(feature = "tmp")]
pub fn tempdir(mut self) -> config_tempdir::ConfigWithTemp {
use tempdir;
let tmp = tempdir::TempDir::new("compiletest")
.expect("failed to create temporary directory");
self.build_base = tmp.path().to_owned();
config_tempdir::ConfigWithTemp {
config: self,
tempdir: tmp,
}
}
}
#[cfg(feature = "tmp")]
mod config_tempdir {
use tempdir;
use std::ops;
pub struct ConfigWithTemp {
pub config: super::Config,
pub tempdir: tempdir::TempDir,
}
impl ops::Deref for ConfigWithTemp {
type Target = super::Config;
fn deref(&self) -> &Self::Target {
&self.config
}
}
impl ops::DerefMut for ConfigWithTemp {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.config
}
}
}
impl Default for Config {
fn default() -> Config {
let platform = rustc::session::config::host_triple().to_string();
Config {
compile_lib_path: PathBuf::from(""),
run_lib_path: PathBuf::from(""),
rustc_path: PathBuf::from("rustc"),
rustdoc_path: PathBuf::from("rustdoc-path"),
lldb_python: "python".to_owned(),
docck_python: "docck-python".to_owned(),
valgrind_path: None,
force_valgrind: false,
llvm_filecheck: None,
src_base: PathBuf::from("tests/run-pass"),
build_base: env::temp_dir(),
stage_id: "stage-id".to_owned(),
mode: Mode::RunPass,
run_ignored: false,
filter: None,
filter_exact: false,
logfile: None,
runtool: None,
host_rustcflags: None,
target_rustcflags: None,
target: platform.clone(),
host: platform.clone(),
gdb_version: None,
lldb_version: None,
llvm_version: None,
android_cross_path: PathBuf::from("android-cross-path"),
adb_path: "adb-path".to_owned(),
adb_test_dir: "adb-test-dir/target".to_owned(),
adb_device_status: false,
lldb_python_dir: None,
verbose: false,
quiet: false,
cc: "cc".to_string(),
cxx: "cxx".to_string(),
cflags: "cflags".to_string(),
llvm_components: "llvm-components".to_string(),
llvm_cxxflags: "llvm-cxxflags".to_string(),
nodejs: None,
}
}
}