aboutsummaryrefslogtreecommitdiff
path: root/libindicate
diff options
context:
space:
mode:
authorTed Gould <ted@canonical.com>2009-01-16 12:47:51 -0600
committerTed Gould <ted@canonical.com>2009-01-16 12:47:51 -0600
commit8f801277df211416ca9636b3d28ead43f9f50a35 (patch)
tree9ba348e8bdd89ecaec99fe600641673e44eff206 /libindicate
parent487239d3df7362f7f5ec5d4934a8672787f557e7 (diff)
downloadlibayatana-indicator-8f801277df211416ca9636b3d28ead43f9f50a35.tar.gz
libayatana-indicator-8f801277df211416ca9636b3d28ead43f9f50a35.tar.bz2
libayatana-indicator-8f801277df211416ca9636b3d28ead43f9f50a35.zip
Moving the tests so that they can guarantee to build after the library
builds as otherwise they end up getting built first.
Diffstat (limited to 'libindicate')
-rw-r--r--libindicate/Makefile.am2
-rw-r--r--libindicate/tests/Makefile.am38
-rw-r--r--libindicate/tests/indicate-alot.c24
-rw-r--r--libindicate/tests/indicate-and-crash.c20
-rw-r--r--libindicate/tests/listen-and-print.c51
-rwxr-xr-xlibindicate/tests/test.js6
6 files changed, 0 insertions, 141 deletions
diff --git a/libindicate/Makefile.am b/libindicate/Makefile.am
index 53917b7..d2a0811 100644
--- a/libindicate/Makefile.am
+++ b/libindicate/Makefile.am
@@ -1,6 +1,4 @@
-SUBDIRS = tests
-
INCLUDES= \
-DG_LOG_DOMAIN=\"libindicate\"
diff --git a/libindicate/tests/Makefile.am b/libindicate/tests/Makefile.am
deleted file mode 100644
index 208da5b..0000000
--- a/libindicate/tests/Makefile.am
+++ /dev/null
@@ -1,38 +0,0 @@
-
-noinst_PROGRAMS = \
- indicate-and-crash \
- indicate-alot \
- listen-and-print
-
-indicate_and_crash_SOURCES = \
- indicate-and-crash.c
-
-indicate_and_crash_CFLAGS = \
- -I $(srcdir)/../.. \
- $(LIBINDICATE_CFLAGS)
-
-indicate_and_crash_LDADD = \
- ../libindicate.la \
- $(LIBINDICATE_LIBS)
-
-indicate_alot_SOURCES = \
- indicate-alot.c
-
-indicate_alot_CFLAGS = \
- -I $(srcdir)/../.. \
- $(LIBINDICATE_CFLAGS)
-
-indicate_alot_LDADD = \
- ../libindicate.la \
- $(LIBINDICATE_LIBS)
-
-listen_and_print_SOURCES = \
- listen-and-print.c
-
-listen_and_print_CFLAGS = \
- -I $(srcdir)/../.. \
- $(LIBINDICATE_CFLAGS)
-
-listen_and_print_LDADD = \
- ../libindicate.la \
- $(LIBINDICATE_LIBS)
diff --git a/libindicate/tests/indicate-alot.c b/libindicate/tests/indicate-alot.c
deleted file mode 100644
index bebf726..0000000
--- a/libindicate/tests/indicate-alot.c
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#include <glib.h>
-#include "libindicate/indicator.h"
-
-#define ALOT 30
-
-
-int
-main (int argc, char ** argv)
-{
- g_type_init();
-
- IndicateIndicator * indicators[ALOT];
- int i;
-
- for (i = 0; i < ALOT; i++) {
- indicators[i] = indicate_indicator_new();
- indicate_indicator_show(indicators[i]);
- }
-
- g_main_loop_run(g_main_loop_new(NULL, FALSE));
-
- return 0;
-}
diff --git a/libindicate/tests/indicate-and-crash.c b/libindicate/tests/indicate-and-crash.c
deleted file mode 100644
index 5a50e30..0000000
--- a/libindicate/tests/indicate-and-crash.c
+++ /dev/null
@@ -1,20 +0,0 @@
-
-#include <glib.h>
-#include "libindicate/indicator.h"
-
-gboolean crashfunc (gpointer data) { *(int *)data = 5; return FALSE;}
-
-int
-main (int argc, char ** argv)
-{
- g_type_init();
-
- IndicateIndicator * indicator = indicate_indicator_new();
- indicate_indicator_show(indicator);
-
- g_timeout_add_seconds(15, crashfunc, NULL);
-
- g_main_loop_run(g_main_loop_new(NULL, FALSE));
-
- return 0;
-}
diff --git a/libindicate/tests/listen-and-print.c b/libindicate/tests/listen-and-print.c
deleted file mode 100644
index 9ad2cc8..0000000
--- a/libindicate/tests/listen-and-print.c
+++ /dev/null
@@ -1,51 +0,0 @@
-
-#include <glib.h>
-#include "libindicate/listener.h"
-
-static void
-indicator_added (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gpointer data)
-{
- g_debug("Indicator Added: %s %d %s", (gchar *)server, (guint)indicator, type);
-}
-
-static void
-indicator_removed (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gpointer data)
-{
- g_debug("Indicator Removed: %s %d %s", (gchar *)server, (guint)indicator, type);
-}
-
-static void
-indicator_modified (IndicateListener * listener, IndicateListenerServer * server, IndicateListenerIndicator * indicator, gchar * type, gchar * property, gpointer data)
-{
- g_debug("Indicator Modified: %s %d %s %s", (gchar *)server, (guint)indicator, type, property);
-}
-
-static void
-server_added (IndicateListener * listener, IndicateListenerServer * server, gpointer data)
-{
- g_debug("Indicator Server Added: %s", (gchar *)server);
-}
-
-static void
-server_removed (IndicateListener * listener, IndicateListenerServer * server, gpointer data)
-{
- g_debug("Indicator Server Removed: %s", (gchar *)server);
-}
-
-int
-main (int argc, char ** argv)
-{
- g_type_init();
-
- IndicateListener * listener = indicate_listener_new();
-
- g_signal_connect(listener, "indicator-added", G_CALLBACK(indicator_added), NULL);
- g_signal_connect(listener, "indicator-removed", G_CALLBACK(indicator_removed), NULL);
- g_signal_connect(listener, "indicator-modified", G_CALLBACK(indicator_modified), NULL);
- g_signal_connect(listener, "server-added", G_CALLBACK(server_added), NULL);
- g_signal_connect(listener, "server-removed", G_CALLBACK(server_removed), NULL);
-
- g_main_loop_run(g_main_loop_new(NULL, FALSE));
-
- return 0;
-}
diff --git a/libindicate/tests/test.js b/libindicate/tests/test.js
deleted file mode 100755
index 45b0d05..0000000
--- a/libindicate/tests/test.js
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/usr/local/bin/seed
-Seed.import_namespace("Indicate");
-
-var indicator = new Indicate.Indicator();
-
-indicator.show();