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:
Enji Cooper 2015-04-29 19:08:11 +00:00
parent 9fe48b8076
commit 7ad92e6ab7

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)