summaryrefslogtreecommitdiffstats
path: root/.github/tools/run_mdadm_tests.sh
blob: 404fcc143ad1f33410927eae25679d7262b9cb31 (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/bash

sudo make clean
sudo make -j$(nproc)
sudo make install
sudo mdadm -Ss
sudo ./test setup
ret=$(sudo ./test --skip-broken --no-error --disable-integrity --disable-multipath --disable-linear --keep-going)
sudo ./test cleanup
exit $ret