]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/src/common.rs
Rollup merge of #35860 - matthew-piziak:mul-example, r=GuillaumeGomez
[rust.git] / src / tools / compiletest / src / 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 std::path::PathBuf;
15
16 #[derive(Clone, Copy, PartialEq, Debug)]
17 pub enum Mode {
18     CompileFail,
19     ParseFail,
20     RunFail,
21     RunPass,
22     RunPassValgrind,
23     Pretty,
24     DebugInfoGdb,
25     DebugInfoLldb,
26     Codegen,
27     Rustdoc,
28     CodegenUnits,
29     Incremental,
30     RunMake,
31     Ui,
32     MirOpt,
33 }
34
35 impl FromStr for Mode {
36     type Err = ();
37     fn from_str(s: &str) -> Result<Mode, ()> {
38         match s {
39             "compile-fail" => Ok(CompileFail),
40             "parse-fail" => Ok(ParseFail),
41             "run-fail" => Ok(RunFail),
42             "run-pass" => Ok(RunPass),
43             "run-pass-valgrind" => Ok(RunPassValgrind),
44             "pretty" => Ok(Pretty),
45             "debuginfo-lldb" => Ok(DebugInfoLldb),
46             "debuginfo-gdb" => Ok(DebugInfoGdb),
47             "codegen" => Ok(Codegen),
48             "rustdoc" => Ok(Rustdoc),
49             "codegen-units" => Ok(CodegenUnits),
50             "incremental" => Ok(Incremental),
51             "run-make" => Ok(RunMake),
52             "ui" => Ok(Ui),
53             "mir-opt" => Ok(MirOpt),
54             _ => Err(()),
55         }
56     }
57 }
58
59 impl fmt::Display for Mode {
60     fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
61         fmt::Display::fmt(match *self {
62                               CompileFail => "compile-fail",
63                               ParseFail => "parse-fail",
64                               RunFail => "run-fail",
65                               RunPass => "run-pass",
66                               RunPassValgrind => "run-pass-valgrind",
67                               Pretty => "pretty",
68                               DebugInfoGdb => "debuginfo-gdb",
69                               DebugInfoLldb => "debuginfo-lldb",
70                               Codegen => "codegen",
71                               Rustdoc => "rustdoc",
72                               CodegenUnits => "codegen-units",
73                               Incremental => "incremental",
74                               RunMake => "run-make",
75                               Ui => "ui",
76                               MirOpt => "mir-opt",
77                           },
78                           f)
79     }
80 }
81
82 #[derive(Clone)]
83 pub struct Config {
84     // The library paths required for running the compiler
85     pub compile_lib_path: PathBuf,
86
87     // The library paths required for running compiled programs
88     pub run_lib_path: PathBuf,
89
90     // The rustc executable
91     pub rustc_path: PathBuf,
92
93     // The rustdoc executable
94     pub rustdoc_path: PathBuf,
95
96     // The python executable to use for LLDB
97     pub lldb_python: String,
98
99     // The python executable to use for htmldocck
100     pub docck_python: String,
101
102     // The llvm FileCheck binary path
103     pub llvm_filecheck: Option<PathBuf>,
104
105     // The valgrind path
106     pub valgrind_path: Option<String>,
107
108     // Whether to fail if we can't run run-pass-valgrind tests under valgrind
109     // (or, alternatively, to silently run them like regular run-pass tests).
110     pub force_valgrind: bool,
111
112     // The directory containing the tests to run
113     pub src_base: PathBuf,
114
115     // The directory where programs should be built
116     pub build_base: PathBuf,
117
118     // The name of the stage being built (stage1, etc)
119     pub stage_id: String,
120
121     // The test mode, compile-fail, run-fail, run-pass
122     pub mode: Mode,
123
124     // Run ignored tests
125     pub run_ignored: bool,
126
127     // Only run tests that match this filter
128     pub filter: Option<String>,
129
130     // Write out a parseable log of tests that were run
131     pub logfile: Option<PathBuf>,
132
133     // A command line to prefix program execution with,
134     // for running under valgrind
135     pub runtool: Option<String>,
136
137     // Flags to pass to the compiler when building for the host
138     pub host_rustcflags: Option<String>,
139
140     // Flags to pass to the compiler when building for the target
141     pub target_rustcflags: Option<String>,
142
143     // Target system to be tested
144     pub target: String,
145
146     // Host triple for the compiler being invoked
147     pub host: String,
148
149     // Version of GDB
150     pub gdb_version: Option<String>,
151
152     // Version of LLDB
153     pub lldb_version: Option<String>,
154
155     // Path to the android tools
156     pub android_cross_path: PathBuf,
157
158     // Extra parameter to run adb on arm-linux-androideabi
159     pub adb_path: String,
160
161     // Extra parameter to run test suite on arm-linux-androideabi
162     pub adb_test_dir: String,
163
164     // status whether android device available or not
165     pub adb_device_status: bool,
166
167     // the path containing LLDB's Python module
168     pub lldb_python_dir: Option<String>,
169
170     // Explain what's going on
171     pub verbose: bool,
172
173     // Print one character per test instead of one line
174     pub quiet: bool,
175
176     // Configuration for various run-make tests frobbing things like C compilers
177     // or querying about various LLVM component information.
178     pub cc: String,
179     pub cxx: String,
180     pub cflags: String,
181     pub llvm_components: String,
182     pub llvm_cxxflags: String,
183 }