Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude flakes found in beta 1.81 #732

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading