aboutsummaryrefslogtreecommitdiff
path: root/utils/sctp/func_tests/test_basic.c
diff options
context:
space:
mode:
authorKory Maincent <kory.maincent@bootlin.com>2021-01-29 18:30:37 +0100
committerPetr Vorel <pvorel@suse.cz>2021-02-05 11:46:07 +0100
commite87631293883a090603bb38f3da6b78742ab9827 (patch)
treeeb79d293375909e1ba454a212bacbc09af52da8b /utils/sctp/func_tests/test_basic.c
parent0592901cf8e36a37b0a3ff12b8bccb1f7fa839bf (diff)
sctp/func_test: add check on the sctp driver
Add the verification on the sctp driver for all the sctp tests. Reviewed-by: Petr Vorel <pvorel@suse.cz> Signed-off-by: Kory Maincent <kory.maincent@bootlin.com>
Diffstat (limited to 'utils/sctp/func_tests/test_basic.c')
-rw-r--r--utils/sctp/func_tests/test_basic.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/sctp/func_tests/test_basic.c b/utils/sctp/func_tests/test_basic.c
index b8d4eaea1..0044a25f6 100644
--- a/utils/sctp/func_tests/test_basic.c
+++ b/utils/sctp/func_tests/test_basic.c
@@ -56,6 +56,7 @@
#include <errno.h>
#include <netinet/sctp.h>
#include <sctputil.h>
+#include "tst_kernel.h"
char *TCID = __FILE__;
int TST_TOTAL = 15;
@@ -92,6 +93,9 @@ int main(void)
struct sockaddr_in6 *in6_addr;
void *addr_buf;
+ if (tst_check_driver("sctp"))
+ tst_brkm(TCONF, tst_exit, "sctp driver not available");
+
/* Rather than fflush() throughout the code, set stdout to
* be unbuffered.
*/