Skip to content
Snippets Groups Projects
Commit b70bc216 authored by David Vossel's avatar David Vossel
Browse files

fixes test.c compile issue when TEST_FRAMEWORK is not enabled

The ast_test_status_update() function is defined in test.h.
When TEST_FRAMEWORK is not enabled a macro is defined as a no-op
place holder for this function.  The macro did not contain
the correct number of arguments.  This caused a compile error.

Much thanks to wdoekes for reporting the issue and supplying the
patch!



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@238091 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent f0190a10
Branches
Tags
No related merge requests found
...@@ -126,7 +126,7 @@ ...@@ -126,7 +126,7 @@
#define AST_TEST_DEFINE(hdr) static enum ast_test_result_state attribute_unused hdr(struct ast_test_info *info, enum ast_test_command cmd, struct ast_test_args *args) #define AST_TEST_DEFINE(hdr) static enum ast_test_result_state attribute_unused hdr(struct ast_test_info *info, enum ast_test_command cmd, struct ast_test_args *args)
#define AST_TEST_REGISTER(cb) #define AST_TEST_REGISTER(cb)
#define AST_TEST_UNREGISTER(cb) #define AST_TEST_UNREGISTER(cb)
#define ast_test_status_update(a,b) #define ast_test_status_update(a,b,c...)
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment