Skip to content

Commit

Permalink
Auto merge of #732 - workingjubilee:exclude-flakes-found-in-beta-1.81…
Browse files Browse the repository at this point in the history
…, r=Mark-Simulacrum

Exclude flakes found in beta 1.81

Details found in rust-lang/rust#128899
  • Loading branch information
bors committed Aug 24, 2024
2 parents f2a10b4 + 8b56ef5 commit cec97cb
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
16 changes: 12 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ fe_session = { skip-tests = true } # flaky test
feed = { skip-tests = true } # flaky test
fftw = { slow = true } # build time close to 2 minutes
fine_grained = { skip-tests = true } # flaky tests
gaffer = { skip-tests = true } # flaky tests (timing-dependent)
gcc = { skip-tests = true } # flaky test
gear = { skip = true } # flaky build
geocode = { skip-tests = true } # depends on network
glib = { slow = true } # tests slow to run
guerrilla = { skip-tests = true } # flaky tests
hashconsing = { skip-tests = true } # flaky test
hopscotch = { skip-tests = true } # flaky tests (quickcheck + inconsistent ords)
hyperdav = { skip-tests = true } # relies on an external service
idx = { skip-tests = true } # depends on filesystem
image-stream = { skip-tests = true } # depends on network
Expand Down Expand Up @@ -117,6 +119,7 @@ treeflection = { skip-tests = true } # flaky test
update_rate = { skip-tests = true } # flaky tests
urdf-viz = { skip = true } # flaky build
vidar = { skip-tests = true } # flaky test
workpool = { skip-tests = true } # flaky tests (timing + thread::sleep in pool::collect_into_vec tests)
carboxyl_time = { skip-tests = true } # flaky test (timing)
cobalt = { skip-tests = true } # flaky test (timing)
conduit-hyper = { skip-tests = true } # flaky test (timing)
Expand Down Expand Up @@ -165,6 +168,7 @@ rustc_get_version = { skip = true } # does not build on beta
"fromheten/plato" = { skip-tests = true } # flaky tests
"jafow/pals" = { skip-tests = true } # flaky tests
"johnedmonds/chance" = { skip-tests = true } # flaky tests
"lht102/coding-problems-practice" = { skip-tests = true } # version-dependent tests (sort_unstable_by ordering)
"LukeMathWalker/tracing-bunyan-formatter" = { skip-tests = true } # flaky tests
"nilsmartel/act" = { skip-tests = true } # flaky tests
"nt-ca-aqe/kitchen-kata-async-rust" = { skip-tests = true } # flaky tests
Expand Down
2 changes: 1 addition & 1 deletion src/utils/disk_usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ fn current_mount() -> Fallible<Filesystem> {
let system = System::new();

let mut found = None;
let mut found_pos = std::usize::MAX;
let mut found_pos = usize::MAX;
for mount in system.mounts()?.into_iter() {
let path = Path::new(&mount.fs_mounted_on);
for (i, ancestor) in current_dir.ancestors().enumerate() {
Expand Down

0 comments on commit cec97cb

Please sign in to comment.