svn commit: r282244 - head/tests/freebsd_test_suite

Garrett Cooper ngie at FreeBSD.org
Wed Apr 29 19:08:12 UTC 2015


Author: ngie
Date: Wed Apr 29 19:08:11 2015
New Revision: 282244
URL: https://svnweb.freebsd.org/changeset/base/282244

Log:
  Fix typo. It should have been atf_tc_skip, not atf_skip
  
  Reported by: many, Jenkins
  Pointyhat to: ngie
  MFC after: 4 days

Modified:
  head/tests/freebsd_test_suite/macros.h

Modified: head/tests/freebsd_test_suite/macros.h
==============================================================================
--- head/tests/freebsd_test_suite/macros.h	Wed Apr 29 18:57:19 2015	(r282243)
+++ head/tests/freebsd_test_suite/macros.h	Wed Apr 29 19:08:11 2015	(r282244)
@@ -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)


More information about the svn-src-all mailing list