diff options
| author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2021-09-28 18:02:27 +0000 |
|---|---|---|
| committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2021-09-28 18:02:27 +0000 |
| commit | 819961c5808b053c626648e202dec42a19ebe7a6 (patch) | |
| tree | 21c73b990dbd2a51a81620a0adf16bec0b41726b /tests/sys/geom/class | |
| parent | 8b889b8953828fe22e5de68647a35610dd87ff8f (diff) | |
Diffstat (limited to 'tests/sys/geom/class')
| -rwxr-xr-x | tests/sys/geom/class/multipath/failloop.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/sys/geom/class/multipath/failloop.sh b/tests/sys/geom/class/multipath/failloop.sh index f9a1417ae37f..b089f0f53d11 100755 --- a/tests/sys/geom/class/multipath/failloop.sh +++ b/tests/sys/geom/class/multipath/failloop.sh @@ -36,6 +36,10 @@ failloop_head() } failloop_body() { + if [ "$(atf_config_get ci false)" = "true" ]; then + atf_skip "https://bugs.freebsd.org/258763" + fi + sysctl -n kern.geom.notaste > kern.geom.notaste.txt load_gnop load_gmultipath @@ -59,6 +63,9 @@ failloop_body() # The dd command should've failed ... atf_check_equal 1 $dd_status # and triggered 1 or 2 path restores + if [ ! -f restore_count ]; then + atf_fail "dtrace didn't execute succfully" + fi if [ `cat restore_count` -gt 2 ]; then atf_fail "gmultipath restored paths too many times" fi |
