mirror of
https://github.com/containers/youki
synced 2024-11-24 01:44:17 +01:00
11 lines
216 B
Bash
11 lines
216 B
Bash
|
#!/bin/bash -ue
|
||
|
|
||
|
# This is a simple script to stress test `cargo test` to rule out flaky tests.
|
||
|
|
||
|
COUNT=${1:-20}
|
||
|
|
||
|
for i in $(seq 1 ${COUNT})
|
||
|
do
|
||
|
echo "Run test ${i} iteration..."
|
||
|
cargo test -- --nocapture
|
||
|
done
|