| Crates.io | loomy |
| lib.rs | loomy |
| version | 0.1.1 |
| created_at | 2022-02-10 00:15:35.558633+00 |
| updated_at | 2022-02-10 00:25:26.392237+00 |
| description | A shim to easily run loom tests |
| homepage | |
| repository | https://github.com/overdrivenpotato/loomy |
| max_upload_size | |
| id | 529966 |
| size | 6,581 |
loomyA shim crate to easily test code with loom.
// std or loom, chosen at compile time by crate feature.
use loomy::{thread, cell::UnsafeCell};
struct Foo {
cell: UnsafeCell<...>,
}
#[test]
fn test_example() {
// When using `std`, `loomy::model` only invokes the closure and nothing
// more.
loomy::model(|| {
// ...
thread::spawn(|| {
// ...
});
// ...
});
}
Run tests with std:
$ cargo test
Run tests with loom:
$ cargo test --features loomy/enable