aboutsummaryrefslogtreecommitdiff
path: root/utils/sctp/func_tests/test_connect.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_connect.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_connect.c')
-rw-r--r--utils/sctp/func_tests/test_connect.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/sctp/func_tests/test_connect.c b/utils/sctp/func_tests/test_connect.c
index 3642d6bd0..f8fc1c2d5 100644
--- a/utils/sctp/func_tests/test_connect.c
+++ b/utils/sctp/func_tests/test_connect.c
@@ -49,6 +49,7 @@
#include <errno.h>
#include <netinet/sctp.h>
#include <sctputil.h>
+#include "tst_kernel.h"
char *TCID = __FILE__;
int TST_TOTAL = 5;
@@ -67,6 +68,9 @@ main(void)
char *big_buffer;
int flags;
+ 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.
*/