aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-09-01 08:24:01 +0100
committerGitHub <[email protected]>2020-09-01 08:24:01 +0100
commitc31a43d360b9d8c75e56af6abbc1b976a9d5e929 (patch)
treef55a96d3340f7051468280b8885f676e2c5f7ecd /xtask
parent148a60b0757d3c741681a68c86b665ea026a127a (diff)
parentcdebf02e5490989efc159cd1b4bc0645713e1dfc (diff)
Merge #5862
5862: Add a test that forbids merge commits r=matklad a=dragfire Fixes #5854 Co-authored-by: dragfire <[email protected]>
Diffstat (limited to 'xtask')
-rw-r--r--xtask/tests/tidy.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs
index fd9645c23..c276b6307 100644
--- a/xtask/tests/tidy.rs
+++ b/xtask/tests/tidy.rs
@@ -50,6 +50,20 @@ fn rust_files_are_tidy() {
50 tidy_docs.finish(); 50 tidy_docs.finish();
51} 51}
52 52
53#[test]
54fn check_merge_commits() {
55 let cmd_output =
56 run!("git rev-list --merges --invert-grep --author 'bors\\[bot\\]' HEAD~4.."; echo = false);
57 match cmd_output {
58 Ok(out) => {
59 if !out.is_empty() {
60 panic!("Please rebase your branch on top of master by running `git rebase master`");
61 }
62 }
63 Err(e) => panic!("{}", e),
64 }
65}
66
53fn deny_clippy(path: &PathBuf, text: &String) { 67fn deny_clippy(path: &PathBuf, text: &String) {
54 if text.contains("[\u{61}llow(clippy") { 68 if text.contains("[\u{61}llow(clippy") {
55 panic!( 69 panic!(