Fix typo. It should have been atf_tc_skip, not atf_skip

Reported by: many, Jenkins
Pointyhat to: ngie
MFC after: 4 days
This commit is contained in:
ngie 2015-04-29 19:08:11 +00:00
parent ed3629565f
commit 0207f9a85e

View File

@ -40,7 +40,7 @@
#define ATF_REQUIRE_KERNEL_MODULE(_mod_name) do { \
if (modfind(_mod_name) == -1) { \
atf_skip("module %s could not be resolved: %s", \
atf_tc_skip("module %s could not be resolved: %s", \
_mod_name, strerror(errno)); \
} \
} while(0)