summaryrefslogtreecommitdiffstats
path: root/libmpv
diff options
context:
space:
mode:
authorThomas Weißschuh <thomas@t-8ch.de>2023-01-19 03:07:06 +0000
committerDudemanguy <random342@airmail.cc>2023-01-19 22:15:14 +0000
commit2056bf1b4e72c5350182e4b150ec1317431cf921 (patch)
tree4bcd075b8395e6ecc645bf089c5301df73a17f3b /libmpv
parentfd2f1a6f9af5087ca8e6e878176db6308fd4b45a (diff)
downloadmpv-2056bf1b4e72c5350182e4b150ec1317431cf921.tar.bz2
mpv-2056bf1b4e72c5350182e4b150ec1317431cf921.tar.xz
meson: add simple test executable for libmpv
This can be used to make sure that the built libmpv is functional.
Diffstat (limited to 'libmpv')
-rw-r--r--libmpv/test.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/libmpv/test.c b/libmpv/test.c
new file mode 100644
index 0000000000..deda2b18b8
--- /dev/null
+++ b/libmpv/test.c
@@ -0,0 +1,29 @@
+/*
+ * This file is part of mpv.
+ *
+ * mpv is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * mpv is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with mpv. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include <libmpv/client.h>
+
+int main(void)
+{
+ mpv_handle *handle = mpv_create();
+ if (!handle)
+ return 1;
+ if (mpv_initialize(handle))
+ return 1;
+ mpv_destroy(handle);
+ return 0;
+}