nblf-queue 0.1.0

Atomic, wait-free MPMC queues based on the nblfq algorithm
Documentation
# Tests

This directory contains integration tests for queue types implemented in this repo. Tests may be run using loom, shuttle, miri, or default.

## Running

To run tests:

```bash
  cargo test --locked --all-features
```

To run tests using `miri`:

```bash
  cargo miri test --locked --all-features
```

To run `loom` tests:

```bash
  LOOM_MAX_PREEMPTIONS=2 RUSTFLAGS="--cfg loom" cargo test --release --locked --lib
```

`loom` tests currently do not support feature `atomic-fallback`.

To run `shuttle` tests:

```bash
  RUSTFLAGS="--cfg shuttle" cargo test --release --locked --lib
```

`shuttle` tests currently do not support feature `atomic-fallback`.