[Asterisk-code-review] modules: Add missing run time module support levels. (asterisk[13])
George Joseph
asteriskteam at digium.com
Fri Oct 19 08:39:02 CDT 2018
George Joseph has submitted this change and it was merged. ( https://gerrit.asterisk.org/10496 )
Change subject: modules: Add missing run time module support levels.
......................................................................
modules: Add missing run time module support levels.
Change-Id: I29b9dbfa4bbfc49f21eba356858e38b1d3041824
---
M tests/test_ari.c
M tests/test_endpoints.c
M tests/test_json.c
M tests/test_optional_api.c
M tests/test_res_stasis.c
M tests/test_stasis.c
M tests/test_stasis_channels.c
M tests/test_stasis_endpoints.c
8 files changed, 17 insertions(+), 8 deletions(-)
Approvals:
Corey Farrell: Looks good to me, but someone else must approve
Sean Bright: Looks good to me, but someone else must approve
George Joseph: Looks good to me, approved; Approved for Submit
diff --git a/tests/test_ari.c b/tests/test_ari.c
index 6043adf..7feb956 100644
--- a/tests/test_ari.c
+++ b/tests/test_ari.c
@@ -572,6 +572,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "ARI testing",
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
);
diff --git a/tests/test_endpoints.c b/tests/test_endpoints.c
index 4447861..f22b3ae 100644
--- a/tests/test_endpoints.c
+++ b/tests/test_endpoints.c
@@ -152,6 +152,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Endpoint testing",
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
);
diff --git a/tests/test_json.c b/tests/test_json.c
index 1ef41fc..12c56d4 100644
--- a/tests/test_json.c
+++ b/tests/test_json.c
@@ -1816,5 +1816,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, 0, "JSON testing",
- .load = load_module,
- .unload = unload_module);
+ .support_level = AST_MODULE_SUPPORT_CORE,
+ .load = load_module,
+ .unload = unload_module
+);
diff --git a/tests/test_optional_api.c b/tests/test_optional_api.c
index 6a7d394..eaef310 100644
--- a/tests/test_optional_api.c
+++ b/tests/test_optional_api.c
@@ -182,6 +182,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "ARI testing",
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
);
diff --git a/tests/test_res_stasis.c b/tests/test_res_stasis.c
index 7b1c8ca..634d360 100644
--- a/tests/test_res_stasis.c
+++ b/tests/test_res_stasis.c
@@ -194,6 +194,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Stasis Core testing",
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
);
diff --git a/tests/test_stasis.c b/tests/test_stasis.c
index e01be94..5c7ab10 100644
--- a/tests/test_stasis.c
+++ b/tests/test_stasis.c
@@ -2104,6 +2104,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, 0, "Stasis testing",
- .load = load_module,
- .unload = unload_module
- );
+ .support_level = AST_MODULE_SUPPORT_CORE,
+ .load = load_module,
+ .unload = unload_module
+);
diff --git a/tests/test_stasis_channels.c b/tests/test_stasis_channels.c
index 2a36c4f..ed6292b 100644
--- a/tests/test_stasis_channels.c
+++ b/tests/test_stasis_channels.c
@@ -328,6 +328,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, 0, "Stasis Channel Testing",
- .load = load_module,
- .unload = unload_module
- );
+ .support_level = AST_MODULE_SUPPORT_CORE,
+ .load = load_module,
+ .unload = unload_module
+);
diff --git a/tests/test_stasis_endpoints.c b/tests/test_stasis_endpoints.c
index c7645fd..3215f77 100644
--- a/tests/test_stasis_endpoints.c
+++ b/tests/test_stasis_endpoints.c
@@ -305,6 +305,7 @@
}
AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Endpoint stasis-related testing",
+ .support_level = AST_MODULE_SUPPORT_CORE,
.load = load_module,
.unload = unload_module,
);
--
To view, visit https://gerrit.asterisk.org/10496
To unsubscribe, or for help writing mail filters, visit https://gerrit.asterisk.org/settings
Gerrit-Project: asterisk
Gerrit-Branch: 13
Gerrit-MessageType: merged
Gerrit-Change-Id: I29b9dbfa4bbfc49f21eba356858e38b1d3041824
Gerrit-Change-Number: 10496
Gerrit-PatchSet: 1
Gerrit-Owner: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Corey Farrell <git at cfware.com>
Gerrit-Reviewer: George Joseph <gjoseph at digium.com>
Gerrit-Reviewer: Jenkins2 (1000185)
Gerrit-Reviewer: Richard Mudgett <rmudgett at digium.com>
Gerrit-Reviewer: Sean Bright <sean.bright at gmail.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-code-review/attachments/20181019/af36fe1b/attachment.html>
More information about the asterisk-code-review
mailing list