rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [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 | |||||
9 | export EXTENSIONS_DIR=$EXTENSIONS_DIR | ||||
10 | cmake -E cmake_echo_color --cyan "Running tests..." | ||||
11 | ctest --force-new-ctest-process |