diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2015-04-29 19:08:11 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2015-04-29 19:08:11 +0000 |
commit | 7ad92e6ab71d5fcdbfbce101ef91ef123a103572 (patch) | |
tree | 6ab2a41ddb3623d3a4e66efc39df31a3875b6d2b /tests/freebsd_test_suite/macros.h | |
parent | 9fe48b8076ae9c6dc486d713c468ff03ec056eda (diff) | |
download | src-7ad92e6ab71d5fcdbfbce101ef91ef123a103572.tar.gz src-7ad92e6ab71d5fcdbfbce101ef91ef123a103572.zip |
Fix typo. It should have been atf_tc_skip, not atf_skip
Reported by: many, Jenkins
Pointyhat to: ngie
MFC after: 4 days
Notes
Notes:
svn path=/head/; revision=282244
Diffstat (limited to 'tests/freebsd_test_suite/macros.h')
-rw-r--r-- | tests/freebsd_test_suite/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/freebsd_test_suite/macros.h b/tests/freebsd_test_suite/macros.h index bc0b61027634..8d95f05324a3 100644 --- a/tests/freebsd_test_suite/macros.h +++ b/tests/freebsd_test_suite/macros.h @@ -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) |