- Timestamp:
- 2006-12-24T19:35:13Z (18 years ago)
- Branches:
- master
- Children:
- 7bee5af
- Parents:
- 9225e08
- Location:
- tests
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
r9225e08 rc227706 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 13 test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o 14 14 15 15 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o -
tests/check.c
r9225e08 rc227706 41 41 Suite *irc_suite(void); 42 42 43 /* From check_help.c */ 44 Suite *help_suite(void); 45 43 46 int main (int argc, char **argv) 44 47 { … … 81 84 srunner_add_suite(sr, md5_suite()); 82 85 srunner_add_suite(sr, irc_suite()); 86 srunner_add_suite(sr, help_suite()); 83 87 if (no_fork) 84 88 srunner_set_fork_status(sr, CK_NOFORK);
Note: See TracChangeset
for help on using the changeset viewer.