summaryrefslogtreecommitdiff
path: root/src/devices/bluetooth/tests/nm-bt-test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bluetooth/tests/nm-bt-test.c')
-rw-r--r--src/devices/bluetooth/tests/nm-bt-test.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/devices/bluetooth/tests/nm-bt-test.c b/src/devices/bluetooth/tests/nm-bt-test.c
new file mode 100644
index 0000000000..42f3f2e553
--- /dev/null
+++ b/src/devices/bluetooth/tests/nm-bt-test.c
@@ -0,0 +1,36 @@
+// SPDX-License-Identifier: LGPL-2.1+
+
+#include "nm-default.h"
+
+#include "devices/bluetooth/nm-bluez5-dun.h"
+
+#include "nm-test-utils-core.h"
+
+/*****************************************************************************/
+
+NMTST_DEFINE ();
+
+int
+main (int argc, char **argv)
+{
+ NMBluez5DunContext *dun_context;
+ GMainLoop *loop;
+
+ if (!g_getenv ("G_MESSAGES_DEBUG"))
+ g_setenv ("G_MESSAGES_DEBUG", "all", TRUE);
+
+ nmtst_init_with_logging (&argc, &argv, "DEBUG", "ALL");
+
+ nm_log_info (LOGD_BT, "bluetooth test util start");
+
+ dun_context = nm_bluez5_dun_new ("aa:bb:cc:dd:ee:ff",
+ "aa:bb:cc:dd:ee:fa");
+
+ loop = g_main_loop_new (NULL, FALSE);
+
+ g_main_loop_unref (loop);
+
+ nm_bluez5_dun_free (dun_context);
+
+ return EXIT_SUCCESS;
+}