8 lines
178 B
Bash
8 lines
178 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /mdadm-testing-dir
|
|
# make the test continue to execute even one fail
|
|
dir=. ./test --keep-going --disable-integrity --skip-broken
|
|
|
|
rm -rf /mdadm-testing-dir/*
|