Changeset 7738014 for tests


Ignore:
Timestamp:
2007-01-21T22:08:56Z (17 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
348c11b
Parents:
8c073a6
Message:

Add tests for set

Location:
tests
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile

    r8c073a6 r7738014  
    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 check_crypting.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 check_set.o
    1414
    1515check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o
  • tests/check.c

    r8c073a6 r7738014  
    6060Suite *crypting_suite(void);
    6161
     62/* From check_set.c */
     63Suite *set_suite(void);
     64
    6265int main (int argc, char **argv)
    6366{
     
    103106        srunner_add_suite(sr, user_suite());
    104107        srunner_add_suite(sr, crypting_suite());
     108        srunner_add_suite(sr, set_suite());
    105109        if (no_fork)
    106110                srunner_set_fork_status(sr, CK_NOFORK);
  • tests/testsuite.h

    r8c073a6 r7738014  
    11#ifndef __BITLBEE_CHECK_H__
    22#define __BITLBEE_CHECK_H__
     3
     4#include "irc.h"
    35
    46irc_t *torture_irc(void);
Note: See TracChangeset for help on using the changeset viewer.