tests/Makefile.am
author Mikael Hallendal <micke@imendio.com>
Sun, 25 Feb 2007 22:48:39 +0100
changeset 255 704881ac7788
parent 171 118ca6c4520e
child 397 5e2ad0e0704a
permissions -rw-r--r--
Fixed potential problem if auth was not called from the open callback. The current SASL code required that you called authenticate from the open callback or the intial features message would be lost. Now the LmSASL object is iniated as soon as it's clear that we are going to talk XMPP. Added a SASL debug level. Some minor style fixes.

SUBDIRS = parser-tests

TESTS =                                       \
	test-objects                          \
	test-parser

test_objects_SOURCES =                        \
	test-objects.c                        \
	test-objects.h

test_parser_SOURCES =                         \
	test-parser.c

if HAVE_CHECK
noinst_PROGRAMS = $(TESTS)
endif

AM_CPPFLAGS =                                 \
	-I.                                   \
	-I$(top_srcdir)                       \
	-DLM_COMPILATION                      \
	-DRUNTIME_ENDIAN                      \
	$(LOUDMOUTH_CFLAGS)                   \
	-DPARSER_TEST_DIR="\"$(top_srcdir)/tests/parser-tests\""  \
	@CHECK_CFLAGS@

LIBS =                                        \
	$(LOUDMOUTH_LIBS)                     \
	@CHECK_LIBS@                          \
	$(top_builddir)/loudmouth/libloudmouth-1.la