diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2024-05-09 11:25:15 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2024-05-29 10:14:39 +0000 |
commit | 5ea26af0e48a0347d1c0e3e0f82c6880eca4b439 (patch) | |
tree | 7e24ae083ce1c810a905deb5f7ad39476c4e1a0a /src/plugins/tests | |
parent | 800c2bb02a40e0b437d4b15f16fece41c33e0d25 (diff) |
rolling: new plugin
This plugin provides support for modems from Rolling Wireless. The
current approach is to re-use the AT-based and MBIM-based specific
modem implementations from the Fibocom plugin.
Based on an original implementation from:
vanillan wang <vanillanwang@163.com>
See https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/merge_requests/1170
Diffstat (limited to 'src/plugins/tests')
-rw-r--r-- | src/plugins/tests/test-udev-rules.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/plugins/tests/test-udev-rules.c b/src/plugins/tests/test-udev-rules.c index 5df65872..3f7be0ee 100644 --- a/src/plugins/tests/test-udev-rules.c +++ b/src/plugins/tests/test-udev-rules.c @@ -192,6 +192,14 @@ test_linktop (void) } #endif +#if defined ENABLE_PLUGIN_ROLLING +static void +test_rolling (void) +{ + common_test (TESTUDEVRULESDIR_ROLLING); +} +#endif + /************************************************************/ int main (int argc, char **argv) @@ -253,6 +261,9 @@ int main (int argc, char **argv) #if defined ENABLE_PLUGIN_LINKTOP g_test_add_func ("/MM/test-udev-rules/linktop", test_linktop); #endif +#if defined ENABLE_PLUGIN_ROLLING + g_test_add_func ("/MM/test-udev-rules/rolling", test_rolling); +#endif return g_test_run (); } |