summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2004-05-27 17:39:19 +0000
committerbillh <billh@e2bd861d-eb25-0410-b326-f6ed22b6b98c>2004-05-27 17:39:19 +0000
commitcec6e8575d451c489ac31769f504863a68c02f3d (patch)
tree66e038e63109dcdf34bd11bc5d0ad5d3c8c9ab36 /test
parent84ceddbdad55b9deb7c922cb032e5fb0280cd9f0 (diff)
downloadat-spi2-core-cec6e8575d451c489ac31769f504863a68c02f3d.tar.gz
Added LoginHelper interface. Fixed test progs to use proper prefixes on
#include'ed files. Incremented to version 1.5.2. git-svn-id: http://svn.gnome.org/svn/at-spi/trunk@669 e2bd861d-eb25-0410-b326-f6ed22b6b98c
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.am12
-rw-r--r--test/app.c4
-rw-r--r--test/at.c4
-rw-r--r--test/key-listener-test.c2
-rw-r--r--test/keypad-test.c2
-rw-r--r--test/keysynth-demo.c2
-rw-r--r--test/keysynth-test.c2
-rw-r--r--test/stress-test.c2
8 files changed, 15 insertions, 15 deletions
diff --git a/test/Makefile.am b/test/Makefile.am
index 68d8d6a8..d2ef5e10 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -1,6 +1,10 @@
NULL=
-noinst_PROGRAMS = test-simple at app simple-at stress-test keysynth-demo key-listener-test event-listener-test window-listener-test screen-review-test keypad-test keysynth-test
+noinst_PROGRAMS = test-simple at app simple-at stress-test keysynth-demo key-listener-test event-listener-test window-listener-test screen-review-test keypad-test keysynth-test login-helper-client-test login-helper-server-test
+
+login_helper_client_test_SOURCES = login-helper-client-test.c
+
+login_helper_server_test_SOURCES = login-helper-server-test.c
keysynth_test_SOURCES = keysynth-test.c
@@ -30,13 +34,9 @@ DEBUG_CFLAGS=-DSPI_DEBUG
INCLUDES = -I$(top_srcdir) \
-I$(top_builddir) \
- -I$(top_srcdir)/libspi \
- -I$(top_builddir)/libspi \
- -I$(top_srcdir)/cspi \
- -I$(top_builddir)/cspi \
$(TESTS_CFLAGS) \
$(DEBUG_CFLAGS)
-LDADD = ../libspi/libspi.la ../cspi/libcspi.la $(TESTS_LIBS) $(X_LIBS) $(XINPUT_LIBS)
+LDADD = ../libspi/libspi.la ../cspi/libcspi.la ../login-helper/libloginhelper.la $(TESTS_LIBS) $(X_LIBS) $(XINPUT_LIBS)
TESTS = test-simple
diff --git a/test/app.c b/test/app.c
index 678ac828..3236b6a7 100644
--- a/test/app.c
+++ b/test/app.c
@@ -27,8 +27,8 @@
#include <bonobo-activation/bonobo-activation.h>
#include <atk/atkobject.h>
#include <libspi/Accessibility.h>
-#include "accessible.h"
-#include "application.h"
+#include <libspi/accessible.h>
+#include <libspi/application.h>
#define APP_STATIC_BUFF_SZ 30
diff --git a/test/at.c b/test/at.c
index b81ca504..aa8e8c60 100644
--- a/test/at.c
+++ b/test/at.c
@@ -25,8 +25,8 @@
#include <stdlib.h>
#include <libbonobo.h>
#include <libspi/Accessibility.h>
-#include "accessible.h"
-#include "listener.h"
+#include <libspi/accessible.h>
+#include <libspi/listener.h>
void
check_ev (CORBA_Environment *ev, char *desc)
diff --git a/test/key-listener-test.c b/test/key-listener-test.c
index ee1738f9..ad73d323 100644
--- a/test/key-listener-test.c
+++ b/test/key-listener-test.c
@@ -28,7 +28,7 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/un.h>
-#include <spi.h>
+#include <cspi/spi.h>
static SPIBoolean report_command_key_event (const AccessibleKeystroke *stroke, void *user_data);
static SPIBoolean report_ordinary_key_event (const AccessibleKeystroke *stroke, void *user_data);
diff --git a/test/keypad-test.c b/test/keypad-test.c
index c714731b..f7d0be86 100644
--- a/test/keypad-test.c
+++ b/test/keypad-test.c
@@ -29,7 +29,7 @@
#include <sys/socket.h>
#include <netinet/in.h>
#include <sys/un.h>
-#include <spi.h>
+#include <cspi/spi.h>
#define XK_MISCELLANY
#include <X11/keysymdef.h>
#include <gdk/gdk.h>
diff --git a/test/keysynth-demo.c b/test/keysynth-demo.c
index 720773ce..9e7bb6a5 100644
--- a/test/keysynth-demo.c
+++ b/test/keysynth-demo.c
@@ -26,7 +26,7 @@
#include <stdlib.h>
#include <gtk/gtk.h>
#include <gdk/gdkx.h>
-#include "spi.h"
+#include <cspi/spi.h>
#define LABELMAXLEN 20
#define MIN_KEYCODE 9
diff --git a/test/keysynth-test.c b/test/keysynth-test.c
index 8d5dbfaf..d77eefa4 100644
--- a/test/keysynth-test.c
+++ b/test/keysynth-test.c
@@ -30,7 +30,7 @@
#include <atk/atknoopobject.h>
#include <bonobo-activation/bonobo-activation-register.h>
#include <bonobo/bonobo-main.h>
-#include <libspi.h>
+#include <libspi/libspi.h>
typedef struct {
long int val;
diff --git a/test/stress-test.c b/test/stress-test.c
index a30dd40c..d4a5feba 100644
--- a/test/stress-test.c
+++ b/test/stress-test.c
@@ -30,7 +30,7 @@
#include <atk/atknoopobject.h>
#include <bonobo-activation/bonobo-activation-register.h>
#include <bonobo/bonobo-main.h>
-#include <libspi.h>
+#include <libspi/libspi.h>
int
main (int argc, char **argv)