From: Corey Farrell Date: Sun, 19 Nov 2017 03:13:32 +0000 (-0500) Subject: tests: Fix warnings found on Mac. X-Git-Tag: 16.0.0-rc1~618^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75cb4037753b83e7623067eafece2031ae340486;p=thirdparty%2Fasterisk.git tests: Fix warnings found on Mac. test_pbx used raise without explicitly including signal.h. On Mac for some reason nothing else includes it. test_logger checked if an unsigned int was negative. Switch the variable to 'int' so that error check can be effective. Change-Id: Ie1db5dd1818ac25cc2ae41b644f848b5865b1362 --- diff --git a/tests/test_logger.c b/tests/test_logger.c index 59ee3e6c12..6cbddb9c0f 100644 --- a/tests/test_logger.c +++ b/tests/test_logger.c @@ -190,7 +190,7 @@ static char *handle_cli_performance_test(struct ast_cli_entry *e, int cmd, struc static char *handle_cli_queue_test(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) { - unsigned int level; + int level; int current_queue_limit; unsigned int x; struct timeval start, end; @@ -220,7 +220,7 @@ static char *handle_cli_queue_test(struct ast_cli_entry *e, int cmd, struct ast_ ast_cli(a->fd, "Test: Failed, could not register level 'queuetest'.\n"); return CLI_SUCCESS; } - ast_cli(a->fd, "Test: got level %u for 'queuetest'.\n", level); + ast_cli(a->fd, "Test: got level %d for 'queuetest'.\n", level); if (ast_logger_create_channel(tmppath, "queuetest") != AST_LOGGER_SUCCESS) { ast_cli(a->fd, "Test: Unable to create logger channel '%s'\n", tmppath); diff --git a/tests/test_pbx.c b/tests/test_pbx.c index 00fa411306..155bec9bf0 100644 --- a/tests/test_pbx.c +++ b/tests/test_pbx.c @@ -37,6 +37,8 @@ #include "asterisk/pbx.h" #include "asterisk/test.h" +#include + /*! * If we determine that we really need * to be able to register more than 10