summaryrefslogtreecommitdiff
path: root/test/sys/test_aio.rs
AgeCommit message (Expand)Author
2022-11-25Clippy cleanup with the latest nightly.Alan Somers
2022-08-12Folloup for !1778, remove some of the less helpful error msgsMichael Baikov
2022-08-04fix clippy assertions_on_result_statesMichael Baikov
2022-06-24Fix all formating problems to pass CI formating testCostin-Robert Sin
2022-05-14Rewrite the aio moduleAlan Somers
2021-11-27Avoid lock poisoning by using parking_lotRyan Zoeller
2021-09-19Clippy cleanupAlan Somers
2021-07-07Collapse Error into ErrnoAlan Somers
2021-07-07Overhaul Nix's error typesAlan Somers
2021-06-12Reenable tests that only failed on Travis, since we no longer use it.Alan Somers
2021-05-30Adapt aio to the world of async/await, and fix some potential unsoundness.Alan Somers
2020-12-14Ignore failures of test_aio_suspend on macosAlan Somers
2020-12-08Fix unreliability in sys::test_aio::test_aio_suspendAlan Somers
2020-05-31Convert the crate to edition 2018Alan Somers
2019-12-22Skip test_aio_cancel_all on muslAlan Somers
2019-09-19Where relevant, replace equality checks in assert! with assert_eq!Xavier L'Heureux
2019-09-03Skip the aio_suspend test on LinuxAlan Somers
2018-09-05Replace allow unused directive with _ prefixPascal Bach
2018-04-06Add LioCb::listio_resubmitAlan Somers
2018-03-22Replace AioCb::from_bytes with more generic from_boxed_sliceAlan Somers
2018-03-22Change sys::aio::lio_listio to sys::aio::LioCb::listioAlan Somers
2018-01-15aio: more documentationAlan Somers
2018-01-15aio: Clippy cleanupAlan Somers
2018-01-15aio: use `Bytes` instead of `Rc<[u8]>`Alan Somers
2018-01-15Add AioCb::from_ptr and AioCb::from_mut_ptrAlan Somers
2017-12-20Use '!' instead of '== false'Bryant Mairs
2017-12-20Use Rc::clone() instead of .clone()Bryant Mairs
2017-12-20Remove unnecessary referencesBryant Mairs
2017-12-20Remove 'static from variablesBryant Mairs
2017-12-20Remove elided 'static lifetimeBryant Mairs
2017-12-20Use write_all instead of writeBryant Mairs
2017-12-02Upgrade to Bitflags 1.0Bryant Mairs
2017-10-07Merge #773bors[bot]
2017-10-05Fix variable does not need to be mutable warning for aio testSanchayan Maity
2017-10-02Add more accessors for AioCbAlan Somers
2017-09-03Fixed error handling in `AioCb::{fsync,read,write}`Alan Somers
2017-09-03AioCb::Drop will now panic for in-progress AioCbAlan Somers
2017-07-24Disable failing tests on mips64Bryant Mairs
2017-07-18Remove signalfd feature in favor of conditional compilationBryant Mairs
2017-07-16Fix thread safety issues in aio, chdir, and wait testsAlan Somers
2017-06-06Fix x86_64 Linux/musl testsBryant Mairs
2017-06-06Fix i686 Linux/musl buildsBryant Mairs
2017-06-06Skip failing MIPS testsBryant Mairs
2017-04-15Add AioCb::from_boxed_sliceAlan Somers
2017-04-15tests should protect concurrent access to signal handlersAlan Somers
2017-02-24impl Debug for AioCb and SigevNotifyAlan Somers
2017-02-05Implement Drop for AioCbAlan Somers
2017-02-05Add runtime checks to AioCb methodsAlan Somers
2017-01-26Turn most aio functions into AioCb methodsAlan Somers
2017-01-25Add PhantomData to AioCb to track buffer's lifetimeAlan Somers