]> git.lizzy.rs Git - rust.git/blob - src/compiletest/common.rs
Merge pull request #20510 from tshepang/patch-6
[rust.git] / src / compiletest / common.rs
1 // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10 pub use self::Mode::*;
11
12 use std::fmt;
13 use std::str::FromStr;
14 use regex::Regex;
15
16 #[derive(Clone, PartialEq)]
17 pub enum Mode {
18     CompileFail,
19     RunFail,
20     RunPass,
21     RunPassValgrind,
22     Pretty,
23     DebugInfoGdb,
24     DebugInfoLldb,
25     Codegen
26 }
27
28 impl Copy for Mode {}
29
30 impl FromStr for Mode {
31     fn from_str(s: &str) -> Option<Mode> {
32         match s {
33           "compile-fail" => Some(CompileFail),
34           "run-fail" => Some(RunFail),
35           "run-pass" => Some(RunPass),
36           "run-pass-valgrind" => Some(RunPassValgrind),
37           "pretty" => Some(Pretty),
38           "debuginfo-lldb" => Some(DebugInfoLldb),
39           "debuginfo-gdb" => Some(DebugInfoGdb),
40           "codegen" => Some(Codegen),
41           _ => None,
42         }
43     }
44 }
45
46 impl fmt::Show for Mode {
47     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
48         let msg = match *self {
49             CompileFail => "compile-fail",
50             RunFail => "run-fail",
51             RunPass => "run-pass",
52             RunPassValgrind => "run-pass-valgrind",
53             Pretty => "pretty",
54             DebugInfoGdb => "debuginfo-gdb",
55             DebugInfoLldb => "debuginfo-lldb",
56             Codegen => "codegen",
57         };
58         msg.fmt(f)
59     }
60 }
61
62 #[derive(Clone)]
63 pub struct Config {
64     // The library paths required for running the compiler
65     pub compile_lib_path: String,
66
67     // The library paths required for running compiled programs
68     pub run_lib_path: String,
69
70     // The rustc executable
71     pub rustc_path: Path,
72
73     // The clang executable
74     pub clang_path: Option<Path>,
75
76     // The llvm binaries path
77     pub llvm_bin_path: Option<Path>,
78
79     // The valgrind path
80     pub valgrind_path: Option<String>,
81
82     // Whether to fail if we can't run run-pass-valgrind tests under valgrind
83     // (or, alternatively, to silently run them like regular run-pass tests).
84     pub force_valgrind: bool,
85
86     // The directory containing the tests to run
87     pub src_base: Path,
88
89     // The directory where programs should be built
90     pub build_base: Path,
91
92     // Directory for auxiliary libraries
93     pub aux_base: Path,
94
95     // The name of the stage being built (stage1, etc)
96     pub stage_id: String,
97
98     // The test mode, compile-fail, run-fail, run-pass
99     pub mode: Mode,
100
101     // Run ignored tests
102     pub run_ignored: bool,
103
104     // Only run tests that match this filter
105     pub filter: Option<Regex>,
106
107     // Precompiled regex for finding expected errors in cfail
108     pub cfail_regex: Regex,
109
110     // Write out a parseable log of tests that were run
111     pub logfile: Option<Path>,
112
113     // Write out a json file containing any metrics of the run
114     pub save_metrics: Option<Path>,
115
116     // Write and ratchet a metrics file
117     pub ratchet_metrics: Option<Path>,
118
119     // Percent change in metrics to consider noise
120     pub ratchet_noise_percent: Option<f64>,
121
122     // "Shard" of the testsuite to pub run: this has the form of
123     // two numbers (a,b), and causes only those tests with
124     // positional order equal to a mod b to run.
125     pub test_shard: Option<(uint,uint)>,
126
127     // A command line to prefix program execution with,
128     // for running under valgrind
129     pub runtool: Option<String>,
130
131     // Flags to pass to the compiler when building for the host
132     pub host_rustcflags: Option<String>,
133
134     // Flags to pass to the compiler when building for the target
135     pub target_rustcflags: Option<String>,
136
137     // Run tests using the JIT
138     pub jit: bool,
139
140     // Target system to be tested
141     pub target: String,
142
143     // Host triple for the compiler being invoked
144     pub host: String,
145
146     // Version of GDB
147     pub gdb_version: Option<String>,
148
149     // Version of LLDB
150     pub lldb_version: Option<String>,
151
152     // Path to the android tools
153     pub android_cross_path: Path,
154
155     // Extra parameter to run adb on arm-linux-androideabi
156     pub adb_path: String,
157
158     // Extra parameter to run test suite on arm-linux-androideabi
159     pub adb_test_dir: String,
160
161     // status whether android device available or not
162     pub adb_device_status: bool,
163
164     // the path containing LLDB's Python module
165     pub lldb_python_dir: Option<String>,
166
167     // Explain what's going on
168     pub verbose: bool
169 }