aboutsummaryrefslogtreecommitdiff
path: root/utils/sctp/func_tests/test_1_to_1_threads.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_1_to_1_threads.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_1_to_1_threads.c')
-rw-r--r--utils/sctp/func_tests/test_1_to_1_threads.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/sctp/func_tests/test_1_to_1_threads.c b/utils/sctp/func_tests/test_1_to_1_threads.c
index e2a7eeeed..2cf96b186 100644
--- a/utils/sctp/func_tests/test_1_to_1_threads.c
+++ b/utils/sctp/func_tests/test_1_to_1_threads.c
@@ -49,6 +49,7 @@
#include <sys/uio.h>
#include <linux/socket.h>
#include <sctputil.h>
+#include "tst_kernel.h"
#define THREADS 10 /* FIXME should be 500 instead of 10 */
#define THREAD_SND_RCV_LOOPS 10
@@ -146,6 +147,9 @@ main(void)
socklen_t len = sizeof(struct sockaddr_in);
struct sockaddr_in svr_addr;
+ if (tst_check_driver("sctp"))
+ tst_brkm(TCONF, tst_exit, "sctp driver not available");
+
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);