mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

freeDiameter is an open source Diameter protocol implementation. It provides an extensible platform for deploying a Diameter network for your Authentication, Authorization and Accounting needs. Signed-off-by: Jackie Huang <jackie.huang@windriver.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com> Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
12 lines
321 B
Bash
12 lines
321 B
Bash
#!/bin/sh
|
|
|
|
if ! lsmod | grep -q sctp && ! modprobe sctp 2>/dev/null; then
|
|
echo "Couldn't load kernel module sctp."
|
|
echo "Test cases testsctp and testcnx will fail."
|
|
echo
|
|
fi
|
|
|
|
export EXTENSIONS_DIR=$EXTENSIONS_DIR
|
|
cmake -E cmake_echo_color --cyan "Running tests..."
|
|
ctest --force-new-ctest-process
|