- Timestamp:
- 2006-12-06T12:15:09Z (18 years ago)
- Branches:
- master
- Children:
- 6a90967
- Parents:
- 7740c4c
- Location:
- tests
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
r7740c4c r2c7df62 9 9 rm -f check *.o 10 10 11 main_objs = account.o bitlbee.o conf.o crypting.o help.o i ni.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_text.o url.o user.o util.o11 main_objs = account.o bitlbee.o conf.o crypting.o help.o ipc.o irc.o irc_commands.o log.o nick.o query.o root_commands.o set.o storage.o storage_xml.o storage_text.o user.o 12 12 13 13 test_objs = check.o check_util.o check_nick.o 14 14 15 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o 15 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o 16 16 @echo '*' Linking $@ 17 17 @$(CC) $(CFLAGS) -o $@ $^ $(LFLAGS) $(EFLAGS) -
tests/check_nick.c
r7740c4c r2c7df62 6 6 #include "irc.h" 7 7 #include "set.h" 8 #include " util.h"8 #include "misc.h" 9 9 10 10 START_TEST(test_nick_strip) -
tests/check_util.c
r7740c4c r2c7df62 6 6 #include "irc.h" 7 7 #include "set.h" 8 #include " util.h"8 #include "misc.h" 9 9 10 10 START_TEST(test_strip_linefeed)
Note: See TracChangeset
for help on using the changeset viewer.