[go: up one dir, main page]

libtest-mimic 0.2.0

Write your own test harness that looks and behaves like the built-in test harness used by `rustc --test`
Documentation
1
2
3
4
5
6
7
8
#!/bin/bash

# Exit script on the first error
set -o errexit -o nounset

export RUSTFLAGS="--deny warnings"

cargo build --verbose