You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#! /usr/bin/sh |
|
|
|
set -o errexit |
|
set -o pipefail |
|
|
|
export CARGO_TARGET_DIR="$1/target/" |
|
export CARGO_HOME="$CARGO_TARGET_DIR/cargo-home" |
|
|
|
cargo test -j 1 -- --test-threads=1 --nocapture
|
|
|