Skip to content
Snippets Groups Projects
Commit 0c57f49d authored by Friendly Automation's avatar Friendly Automation Committed by Gerrit Code Review
Browse files

Merge "test_utils.c: Skip test adsi_loaded_test if module not loaded."

parents f654ced6 ed757cc7
No related branches found
No related tags found
No related merge requests found
......@@ -343,6 +343,11 @@ AST_TEST_DEFINE(adsi_loaded_test)
break;
}
if (!ast_module_check("res_adsi.so")) {
ast_test_status_update(test, "This test skipped because deprecated module res_adsi.so is not built by default.\n");
return AST_TEST_PASS;
}
if (!(c = ast_dummy_channel_alloc())) {
return AST_TEST_FAIL;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment