Skip to content

Commit a15793e

Browse files
committed
Auto merge of #538 - RalfJung:spurious, r=pietroalbini
add some spurious failures These were all marked as regressed in https://crater-reports.s3.amazonaws.com/pr-71274/index.html, but I am pretty sure they are not breaking because of that PR.
2 parents 07c807d + 22a4db0 commit a15793e

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

config.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,16 @@ treeflection = { skip-tests = true } # flaky test
118118
update_rate = { skip-tests = true } # flaky tests
119119
urdf-viz = { skip = true } # flaky build
120120
vidar = { skip-tests = true } # flaky test
121+
carboxyl_time = { skip-tests = true } # flaky test (timing)
122+
cobalt = { skip-tests = true } # flaky test (timing)
123+
conduit-hyper = { skip-tests = true } # flaky test (timing)
124+
serialport = { skip-tests = true } # flaky test (timing)
125+
smartpool = { skip-tests = true } # flaky test (timing)
126+
softposit = { skip-tests = true } # flaky test (rng)
127+
test-patience = { skip-tests = true } # flaky test (timing)
128+
timekeeper = { skip-tests = true } # flaky test (timing)
129+
tokio-proto = { skip-tests = true } # flaky test (concurrency)
130+
toql_derive = { skip-tests = true } # flaky test ("Sometimes failes becuse join order different")
121131

122132
[github-repos]
123133
# "org_name/repo_name" = { option = true }

src/report/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ pub fn generate_report<DB: ReadResults>(
220220
let mut crates = crates.to_vec();
221221
let index = Index::new(WORK_DIR.join("crates.io-index"));
222222
//crate ids are unique so unstable sort is equivalent to stable sort but is generally faster
223-
crates.sort_unstable_by(|a, b| a.id().cmp(&b.id()));
223+
crates.sort_unstable_by_key(|a| a.id());
224224
let res = crates
225225
.iter()
226226
.map(|krate| {

0 commit comments

Comments
 (0)