aboutsummaryrefslogtreecommitdiff
path: root/xtask/tests
diff options
context:
space:
mode:
authorZac Pullar-Strecker <[email protected]>2020-07-31 03:34:49 +0100
committerZac Pullar-Strecker <[email protected]>2020-07-31 03:49:20 +0100
commit1fa842c8c9e9fed28a45fe1e3b109f2f902d128c (patch)
tree8dffd4bbc3c18ee83c9462006dede7b1ec7cef91 /xtask/tests
parent9522a06fd444c670202fd64c91d1ba62e332ff70 (diff)
Update expect tests
Diffstat (limited to 'xtask/tests')
-rw-r--r--xtask/tests/tidy.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/xtask/tests/tidy.rs b/xtask/tests/tidy.rs
index d65a2acbc..14f0c672d 100644
--- a/xtask/tests/tidy.rs
+++ b/xtask/tests/tidy.rs
@@ -53,9 +53,11 @@ fn rust_files_are_tidy() {
53fn check_licenses() { 53fn check_licenses() {
54 let expected = " 54 let expected = "
550BSD OR MIT OR Apache-2.0 550BSD OR MIT OR Apache-2.0
56Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
56Apache-2.0 OR BSL-1.0 57Apache-2.0 OR BSL-1.0
57Apache-2.0 OR MIT 58Apache-2.0 OR MIT
58Apache-2.0/MIT 59Apache-2.0/MIT
60Apache-2.0
59BSD-2-Clause 61BSD-2-Clause
60BSD-3-Clause 62BSD-3-Clause
61CC0-1.0 63CC0-1.0
@@ -82,7 +84,10 @@ Zlib
82 .collect::<Vec<_>>(); 84 .collect::<Vec<_>>();
83 licenses.sort(); 85 licenses.sort();
84 licenses.dedup(); 86 licenses.dedup();
85 assert_eq!(licenses, expected); 87 assert_eq!(
88 licenses.iter().filter(|license| !expected.contains(license)).collect::<Vec<_>>(),
89 Vec::<&&str>::new()
90 );
86} 91}
87 92
88fn check_todo(path: &Path, text: &str) { 93fn check_todo(path: &Path, text: &str) {