1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-18 15:30:21 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=282244

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)