]> git.lizzy.rs Git - rust.git/blob - src/tools/compiletest/src/common.rs
Unignore u128 test for stage 0,1
[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     // Exactly match the filter, rather than a substring
131     pub filter_exact: bool,
132
133     // Write out a parseable log of tests that were run
134     pub logfile: Option<PathBuf>,
135
136     // A command line to prefix program execution with,
137     // for running under valgrind
138     pub runtool: Option<String>,
139
140     // Flags to pass to the compiler when building for the host
141     pub host_rustcflags: Option<String>,
142
143     // Flags to pass to the compiler when building for the target
144     pub target_rustcflags: Option<String>,
145
146     // Target system to be tested
147     pub target: String,
148
149     // Host triple for the compiler being invoked
150     pub host: String,
151
152     // Path to / name of the GDB executable
153     pub gdb: Option<String>,
154
155     // Version of GDB, encoded as ((major * 1000) + minor) * 1000 + patch
156     pub gdb_version: Option<u32>,
157
158     // Whether GDB has native rust support
159     pub gdb_native_rust: bool,
160
161     // Version of LLDB
162     pub lldb_version: Option<String>,
163
164     // Version of LLVM
165     pub llvm_version: Option<String>,
166
167     // Path to the android tools
168     pub android_cross_path: PathBuf,
169
170     // Extra parameter to run adb on arm-linux-androideabi
171     pub adb_path: String,
172
173     // Extra parameter to run test suite on arm-linux-androideabi
174     pub adb_test_dir: String,
175
176     // status whether android device available or not
177     pub adb_device_status: bool,
178
179     // the path containing LLDB's Python module
180     pub lldb_python_dir: Option<String>,
181
182     // Explain what's going on
183     pub verbose: bool,
184
185     // Print one character per test instead of one line
186     pub quiet: bool,
187
188     // Configuration for various run-make tests frobbing things like C compilers
189     // or querying about various LLVM component information.
190     pub cc: String,
191     pub cxx: String,
192     pub cflags: String,
193     pub llvm_components: String,
194     pub llvm_cxxflags: String,
195     pub nodejs: Option<String>,
196 }