diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2015-04-29 08:56:56 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2015-04-29 08:56:56 +0000 |
commit | c82b9f923426d26f1cbf9541ac5f54c78d1a6aa6 (patch) | |
tree | 142644d3b43dda0372c3f9df9e520fa4e5fea273 /tests/freebsd_test_suite | |
parent | 1a8fd8faac6f91e68a9c64c5e37e1b64cc7a34db (diff) | |
download | src-test2-c82b9f923426d26f1cbf9541ac5f54c78d1a6aa6.tar.gz src-test2-c82b9f923426d26f1cbf9541ac5f54c78d1a6aa6.zip |
Notes
Diffstat (limited to 'tests/freebsd_test_suite')
-rw-r--r-- | tests/freebsd_test_suite/macros.h | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/tests/freebsd_test_suite/macros.h b/tests/freebsd_test_suite/macros.h index 755a9942d5f5..bc0b61027634 100644 --- a/tests/freebsd_test_suite/macros.h +++ b/tests/freebsd_test_suite/macros.h @@ -32,21 +32,24 @@ #include <sys/param.h> #include <sys/module.h> #include <string.h> -#include <err.h> #include <errno.h> +#include <stdio.h> +#include <unistd.h> #include <atf-c.h> #define ATF_REQUIRE_KERNEL_MODULE(_mod_name) do { \ - ATF_REQUIRE_MSG(modfind(_mod_name) != -1, \ - "module %s could not be resolved: %s", \ - _mod_name, strerror(errno)); \ + if (modfind(_mod_name) == -1) { \ + atf_skip("module %s could not be resolved: %s", \ + _mod_name, strerror(errno)); \ + } \ } while(0) -#define PLAIN_REQUIRE_KERNEL_MODULE(_mod_name, _exit_code) do { \ +#define PLAIN_REQUIRE_KERNEL_MODULE(_mod_name, _exit_code) do { \ if (modfind(_mod_name) == -1) { \ - err(_exit_code, "module %s could not be resolved", \ - _mod_name); \ + printf("module %s could not be resolved: %s\n", \ + _mod_name, strerror(errno)); \ + _exit(_exit_code); \ } \ } while(0) |