Add tests for channel change events

This commit is contained in:
Will Storey 2018-08-11 10:49:47 -07:00
commit 6f38d67d87
2 changed files with 209 additions and 4 deletions

View file

@ -8,21 +8,24 @@ AM_CPPFLAGS = \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
$(GLIB_CFLAGS)
test_programs = test-irc
test_programs = test-channel-events test-irc
test_irc_CPPFLAGS = \
CPPFLAGS = \
-I$(top_srcdir)/src/irc/core \
$(AM_CPPFLAGS)
test_irc_DEPENDENCIES = \
DEPENDENCIES = \
../../../src/core/libcore.a \
../../../src/lib-config/libirssi_config.a
test_irc_LDADD = \
LDADD = \
../../../src/irc/core/libirc_core.a \
../../../src/core/libcore.a \
../../../src/lib-config/libirssi_config.a \
@PROG_LIBS@
test_channel_events_SOURCES = \
test-channel-events.c
test_irc_SOURCES = \
test-irc.c