Changeset 8c073a6


Ignore:
Timestamp:
2007-01-21T21:38:50Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
7738014
Parents:
ed5df81
Message:

Add testsuite for crypting.

Location:
tests
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile

    red5df81 r8c073a6  
    1111main_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
    1212
    13 test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o check_user.o
     13test_objs = check.o check_util.o check_nick.o check_md5.o check_irc.o check_help.o check_user.o check_crypting.o
    1414
    1515check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
  • tests/check.c

    red5df81 r8c073a6  
    5757Suite *user_suite(void);
    5858
     59/* From check_crypting.c */
     60Suite *crypting_suite(void);
     61
    5962int main (int argc, char **argv)
    6063{
     
    99102        srunner_add_suite(sr, help_suite());
    100103        srunner_add_suite(sr, user_suite());
     104        srunner_add_suite(sr, crypting_suite());
    101105        if (no_fork)
    102106                srunner_set_fork_status(sr, CK_NOFORK);
Note: See TracChangeset for help on using the changeset viewer.