[gnome-settings-daemon] orientation: Add test program for whole plugin



commit e7352422edf36d8d1117b03813acc3df84564fb3
Author: Bastien Nocera <hadess hadess net>
Date:   Thu Jun 2 18:13:36 2011 +0100

    orientation: Add test program for whole plugin
    
    Makes it easier to test out on the actual systems.

 plugins/orientation/Makefile.am        |   25 ++++++++++++-
 plugins/orientation/test-orientation.c |   63 ++++++++++++++++++++++++++++++++
 2 files changed, 87 insertions(+), 1 deletions(-)
---
diff --git a/plugins/orientation/Makefile.am b/plugins/orientation/Makefile.am
index b79ecc0..ac4cff8 100644
--- a/plugins/orientation/Makefile.am
+++ b/plugins/orientation/Makefile.am
@@ -1,6 +1,6 @@
 plugin_name = orientation
 
-noinst_PROGRAMS = test-orientation-calculation
+noinst_PROGRAMS = test-orientation-calculation test-orientation
 
 test_orientation_calculation_SOURCES =	\
 	gsd-orientation-calc.c		\
@@ -15,6 +15,29 @@ test_orientation_calculation_CFLAGS =	\
 test_orientation_calculation_LDADD =	\
 	$(SETTINGS_PLUGIN_LIBS)
 
+test_orientation_SOURCES =		\
+	gsd-orientation-manager.h	\
+	gsd-orientation-manager.c	\
+	gsd-orientation-calc.c		\
+	gsd-orientation-calc.h		\
+	test-orientation.c
+
+test_orientation_CFLAGS =					\
+	-I$(top_srcdir)/gnome-settings-daemon			\
+	-I$(top_srcdir)/plugins/common				\
+	-DGNOME_SETTINGS_LOCALEDIR=\""$(datadir)/locale"\"	\
+	$(GUDEV_CFLAGS)						\
+	$(XINPUT_CFLAGS)					\
+	$(PLUGIN_CFLAGS)					\
+	$(SETTINGS_PLUGIN_CFLAGS)				\
+	$(AM_CFLAGS)
+
+test_orientation_LDADD =				\
+	$(top_builddir)/plugins/common/libcommon.la	\
+	$(GUDEV_LIBS)					\
+	$(XINPUT_LIBS)					\
+	$(SETTINGS_PLUGIN_LIBS)
+
 plugin_LTLIBRARIES = liborientation.la
 
 liborientation_la_SOURCES = 		\
diff --git a/plugins/orientation/test-orientation.c b/plugins/orientation/test-orientation.c
new file mode 100644
index 0000000..ffd87c1
--- /dev/null
+++ b/plugins/orientation/test-orientation.c
@@ -0,0 +1,63 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
+ *
+ * Copyright (C) 2007 William Jon McCann <mccann jhu edu>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; either version 2 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+ * 02111-1307, USA.
+ *
+ *
+ */
+
+#include "config.h"
+
+#include <stdlib.h>
+
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include "gsd-orientation-manager.h"
+
+static GsdOrientationManager *manager = NULL;
+
+int
+main (int    argc,
+      char **argv)
+{
+        GError  *error;
+
+#ifdef ENABLE_NLS
+        bindtextdomain (GETTEXT_PACKAGE, GNOME_SETTINGS_LOCALEDIR);
+# ifdef HAVE_BIND_TEXTDOMAIN_CODESET
+        bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+# endif
+        textdomain (GETTEXT_PACKAGE);
+#endif
+
+        error = NULL;
+        if (! gtk_init_with_args (&argc, &argv, NULL, NULL, NULL, &error)) {
+                fprintf (stderr, "%s", error->message);
+                g_error_free (error);
+                exit (1);
+        }
+
+        manager = gsd_orientation_manager_new ();
+
+        error = NULL;
+        gsd_orientation_manager_start (manager, &error);
+
+        gtk_main ();
+
+        return 0;
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]