mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-02 19:16:15 +00:00
Fix more dev-mode build issues
........ Merged revisions 419129 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 419162 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 419163 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@419175 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -99,7 +99,7 @@ AST_TEST_DEFINE(test_provide_first)
|
||||
test_optional();
|
||||
|
||||
if (was_called_result != IMPL) {
|
||||
ast_test_status_update(test, "Expected %d, was %d",
|
||||
ast_test_status_update(test, "Expected %d, was %u",
|
||||
IMPL, was_called_result);
|
||||
goto done;
|
||||
}
|
||||
@@ -135,7 +135,7 @@ AST_TEST_DEFINE(test_provide_last)
|
||||
|
||||
test_optional();
|
||||
if (was_called_result != STUB) {
|
||||
ast_test_status_update(test, "Expected %d, was %d",
|
||||
ast_test_status_update(test, "Expected %d, was %u",
|
||||
STUB, was_called_result);
|
||||
goto done;
|
||||
}
|
||||
@@ -144,7 +144,7 @@ AST_TEST_DEFINE(test_provide_last)
|
||||
|
||||
test_optional();
|
||||
if (was_called_result != IMPL) {
|
||||
ast_test_status_update(test, "Expected %d, was %d",
|
||||
ast_test_status_update(test, "Expected %d, was %u",
|
||||
IMPL, was_called_result);
|
||||
ast_optional_api_unprovide(SYMNAME, test_optional_impl);
|
||||
goto done;
|
||||
@@ -154,7 +154,7 @@ AST_TEST_DEFINE(test_provide_last)
|
||||
|
||||
test_optional();
|
||||
if (was_called_result != STUB) {
|
||||
ast_test_status_update(test, "Expected %d, was %d",
|
||||
ast_test_status_update(test, "Expected %d, was %u",
|
||||
STUB, was_called_result);
|
||||
ast_optional_api_unprovide(SYMNAME, test_optional_impl);
|
||||
goto done;
|
||||
|
Reference in New Issue
Block a user