Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | if ! lsmod | grep -q sctp && ! modprobe sctp 2>/dev/null; then | ||||
4 | echo "Couldn't load kernel module sctp." | ||||
5 | echo "Test cases testsctp and testcnx will fail." | ||||
6 | echo | ||||
7 | fi | ||||
8 | |||||
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 9 | cmake -E cmake_echo_color --cyan "Running tests..." |
10 | ctest --force-new-ctest-process |