- Timestamp:
- 2007-01-21T22:08:56Z (18 years ago)
- Branches:
- master
- Children:
- 348c11b
- Parents:
- 8c073a6
- Location:
- tests
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
r8c073a6 r7738014 11 11 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 test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o check_user.o check_crypting.o 13 test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o check_user.o check_crypting.o check_set.o 14 14 15 15 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o -
tests/check.c
r8c073a6 r7738014 60 60 Suite *crypting_suite(void); 61 61 62 /* From check_set.c */ 63 Suite *set_suite(void); 64 62 65 int main (int argc, char **argv) 63 66 { … … 103 106 srunner_add_suite(sr, user_suite()); 104 107 srunner_add_suite(sr, crypting_suite()); 108 srunner_add_suite(sr, set_suite()); 105 109 if (no_fork) 106 110 srunner_set_fork_status(sr, CK_NOFORK); -
tests/testsuite.h
r8c073a6 r7738014 1 1 #ifndef __BITLBEE_CHECK_H__ 2 2 #define __BITLBEE_CHECK_H__ 3 4 #include "irc.h" 3 5 4 6 irc_t *torture_irc(void);
Note: See TracChangeset
for help on using the changeset viewer.