summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2017-11-21 06:50:53 -0600
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-11-21 06:50:53 -0600
commit4e6a0d568391e51453711a0b31fb133840e41d01 (patch)
tree2248745264148f02adffbf75c616b0e73bd06844 /tests
parent29bf57ff2f995b710846263110c2354729a42014 (diff)
parent455b1bdeb0888f69fa21e01a804d1aa9a30e46b6 (diff)
Merge "menuselect: Remove ineffective weak attribute detection." into 13
Diffstat (limited to 'tests')
-rw-r--r--tests/test_utils.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/test_utils.c b/tests/test_utils.c
index 98cf063db..2a8ae1599 100644
--- a/tests/test_utils.c
+++ b/tests/test_utils.c
@@ -326,20 +326,6 @@ AST_TEST_DEFINE(crypto_loaded_test)
break;
}
-#if 0 /* Not defined on Solaris */
- ast_test_status_update(test,
- "address of __stub__ast_crypto_loaded is %p\n",
- __stub__ast_crypto_loaded);
-#ifndef HAVE_ATTRIBUTE_weak_import
- ast_test_status_update(test,
- "address of __ref__ast_crypto_loaded is %p\n",
- __ref__ast_crypto_loaded);
-#endif
- ast_test_status_update(test,
- "pointer to ast_crypto_loaded is %p\n",
- ast_crypto_loaded);
-#endif
-
return ast_crypto_loaded() ? AST_TEST_PASS : AST_TEST_FAIL;
}
@@ -390,20 +376,6 @@ AST_TEST_DEFINE(agi_loaded_test)
break;
}
-#if 0
- ast_test_status_update(test,
- "address of __stub__ast_agi_register is %p\n",
- __stub__ast_agi_register);
-#ifndef HAVE_ATTRIBUTE_weak_import
- ast_test_status_update(test,
- "address of __ref__ast_agi_register is %p\n",
- __ref__ast_agi_register);
-#endif
- ast_test_status_update(test,
- "pointer to ast_agi_register is %p\n",
- ast_agi_register);
-#endif
-
if (ast_agi_register(ast_module_info->self, &noop_command) == AST_OPTIONAL_API_UNAVAILABLE) {
ast_test_status_update(test, "Unable to register testnoop command, because res_agi is not loaded.\n");
return AST_TEST_FAIL;