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