https://ci.freebsd.org/job/FreeBSD-main-amd64-test/20427/testReport/junit/sys.ses/destructive/setelmstat/
/usr/src/tests/sys/ses/destructive.c:57: r != 0
https://ci.freebsd.org/job/FreeBSD-main-amd64-test/20427/testReport/junit/sys.ses/destructive/setencstat/
/usr/src/tests/sys/ses/common.h:44: r != 0
glob(3) returns GLOB_NOMATCH if GLOB_NOCHECK or GLOB_NOMAGIC flag is not passed
so ATF_REQUIRE_EQ(r, 0) will cause a precondition check failure if no /dev/ses*
exists.
Remove calling of atf_tc_skip() in ATF_TC_CLEANUP() because it would let
the clean up procedure unfinish.
This patch calls glob(3) twice in each test case which is not optimal,
but I'd like to fix this first in CI. Maybe later we can change it to keep the
glob(3) result and then use in the rest of the test body.