1
0
Fork 0
mdadm/.github/tools/run_mdadm_tests.sh
Daniel Baumann 72807d3921
Merging upstream version 4.3+20241202.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-14 06:37:23 +01:00

18 lines
439 B
Bash
Executable file

#!/usr/bin/bash
sudo make clean
sudo make -j$(nproc)
sudo make install
sudo mdadm -Ss
sudo ./test setup
# Uncomment and adjust this to minimalize testing time for CI or test improvements.
# --tests=test1,test2,... Comma separated list of tests to run
#sudo ./test --tests=00createnames
sudo ./test --skip-broken --no-error --disable-integrity --disable-multipath --disable-linear --keep-going
ret=$?
sudo ./test cleanup
exit $ret