[go: up one dir, main page]

coco 0.1.1

Concurrent collections
Documentation
#!/bin/bash

set -ex

cargo test
cargo test --features strict_gc

if [[ "$TRAVIS_RUST_VERSION" == "nightly" ]]; then
    cd sanitize

    cargo test
    cargo test --features coco/strict_gc

    for _ in {1..10}; do
        cargo test --release
    done
    for _ in {1..10}; do
        cargo test --release --features coco/strict_gc
    done
fi