- Timestamp:
- 2007-01-21T21:38:50Z (18 years ago)
- Branches:
- master
- Children:
- 7738014
- Parents:
- ed5df81
- Location:
- tests
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
red5df81 r8c073a6 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 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 14 14 15 15 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o -
tests/check.c
red5df81 r8c073a6 57 57 Suite *user_suite(void); 58 58 59 /* From check_crypting.c */ 60 Suite *crypting_suite(void); 61 59 62 int main (int argc, char **argv) 60 63 { … … 99 102 srunner_add_suite(sr, help_suite()); 100 103 srunner_add_suite(sr, user_suite()); 104 srunner_add_suite(sr, crypting_suite()); 101 105 if (no_fork) 102 106 srunner_set_fork_status(sr, CK_NOFORK);
Note: See TracChangeset
for help on using the changeset viewer.