aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-01-06 15:04:43 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-01-06 17:23:19 +0100
commitd5b3ca621b26a70c16cc61fcf9cd4ef0a15fce15 (patch)
treeec5d421a924a3d26fc081d78e646f1147a692c3a /openbsc
parent300457b7d2406e0c400b51a77609ce1ab01b564c (diff)
mgcp: Print message when the test is finished
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/tests/mgcp/mgcp_test.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/openbsc/tests/mgcp/mgcp_test.c b/openbsc/tests/mgcp/mgcp_test.c
index b7273de43..f29d5b80d 100644
--- a/openbsc/tests/mgcp/mgcp_test.c
+++ b/openbsc/tests/mgcp/mgcp_test.c
@@ -48,7 +48,11 @@ static void test_auep(void)
{
struct msgb *inp;
struct msgb *msg;
- struct mgcp_config *cfg = mgcp_config_alloc();
+ struct mgcp_config *cfg;
+
+ printf("Testing AUEP\n");
+
+ cfg = mgcp_config_alloc();
cfg->trunk.number_endpoints = 64;
mgcp_endpoints_allocate(&cfg->trunk);
@@ -78,5 +82,7 @@ int main(int argc, char **argv)
osmo_init_logging(&log_info);
test_auep();
- return 0;
+
+ printf("Done\n");
+ return EXIT_SUCCESS;
}