]> git.proxmox.com Git - rustc.git/blame - src/tools/tidy/src/main.rs
New upstream version 1.27.1+dfsg1
[rustc.git] / src / tools / tidy / src / main.rs
CommitLineData
a7813a04
XL
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
041b39d2 11//! Tidy checks source code in this repository
a7813a04
XL
12//!
13//! This program runs all of the various tidy checks for style, cleanliness,
14//! etc. This is run by default on `make check` and as part of the auto
15//! builders.
16
041b39d2 17#![deny(warnings)]
a7813a04 18
041b39d2
XL
19extern crate tidy;
20use tidy::*;
a7813a04 21
041b39d2
XL
22use std::process;
23use std::path::PathBuf;
24use std::env;
a7813a04
XL
25
26fn main() {
0531ce1d 27 let path = env::args_os().skip(1).next().expect("need path to src");
a7813a04
XL
28 let path = PathBuf::from(path);
29
0531ce1d
XL
30 let cargo = env::args_os().skip(2).next().expect("need path to cargo");
31 let cargo = PathBuf::from(cargo);
32
8bb4bdeb
XL
33 let args: Vec<String> = env::args().skip(1).collect();
34
a7813a04 35 let mut bad = false;
7cac9316 36 let quiet = args.iter().any(|s| *s == "--quiet");
a7813a04
XL
37 bins::check(&path, &mut bad);
38 style::check(&path, &mut bad);
39 errors::check(&path, &mut bad);
40 cargo::check(&path, &mut bad);
7cac9316 41 features::check(&path, &mut bad, quiet);
c30ab7b3 42 pal::check(&path, &mut bad);
cc61c64b 43 unstable_book::check(&path, &mut bad);
83c7162d 44 libcoretest::check(&path, &mut bad);
8bb4bdeb
XL
45 if !args.iter().any(|s| *s == "--no-vendor") {
46 deps::check(&path, &mut bad);
47 }
0531ce1d
XL
48 deps::check_whitelist(&path, &cargo, &mut bad);
49 ui_tests::check(&path, &mut bad);
a7813a04
XL
50
51 if bad {
abe05a73 52 eprintln!("some tidy checks failed");
cc61c64b 53 process::exit(1);
a7813a04
XL
54 }
55}