]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/toolstate.rs
Separate codepaths for fat and thin LTO in write.rs
[rust.git] / src / bootstrap / toolstate.rs
1 // Copyright 2016 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
11 #[derive(Copy, Clone, Debug, Deserialize, Serialize, PartialEq, Eq)]
12 #[serde(rename_all = "kebab-case")]
13 /// Whether a tool can be compiled, tested or neither
14 pub enum ToolState {
15     /// The tool compiles successfully, but the test suite fails
16     TestFail = 1,
17     /// The tool compiles successfully and its test suite passes
18     TestPass = 2,
19     /// The tool can't even be compiled
20     BuildFail = 0,
21 }
22
23 impl Default for ToolState {
24     fn default() -> Self {
25         // err on the safe side
26         ToolState::BuildFail
27     }
28 }