summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Undheim <ruben.undheim@gmail.com>2018-08-05 21:01:16 +0000
committerRuben Undheim <ruben.undheim@gmail.com>2018-08-05 21:02:09 +0000
commiteef7e4ab21b221e438f11d98ac86bf0ea63bfff2 (patch)
treea3f6ba89dd44e6a374dcd1b0b4a854e9cd7fd964
parent7a257adf7046a1a9f3f76bce618a01acac1e7a3b (diff)
-rwxr-xr-xdebian/tests/can-link5
1 files changed, 3 insertions, 2 deletions
diff --git a/debian/tests/can-link b/debian/tests/can-link
index 2573d35..3eb7b2a 100755
--- a/debian/tests/can-link
+++ b/debian/tests/can-link
@@ -15,9 +15,10 @@ int main()
}
EOF
-gcc -o sccptest sccptest.c `pkg-config --cflags --libs libosmo-mtp libosmo-sccp libosmo-xua`
+gcc -o sccptest sccptest.c `pkg-config --cflags --libs libosmo-mtp libosmo-sccp libosmo-xua` -losmocore > /dev/null
echo "build: OK"
[ -x sccptest ]
-./sccptest
+# > /dev/null because it writes this: full talloc report on 'sccp' (total 1 bytes in 1 blocks)
+./sccptest 2> /dev/null
echo "run: OK"