- Timestamp:
- 2008-06-21T23:34:11Z (16 years ago)
- Branches:
- master
- Children:
- 98de2cc
- Parents:
- edc767b
- Location:
- tests
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile
redc767b r3e6764a 13 13 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 14 14 15 test_objs = check.o check_util.o check_nick.o check_md5.o check_arc.o check_irc.o check_help.o check_user.o check_crypting.o check_set.o check_jabber_sasl.o 15 test_objs = check.o check_util.o check_nick.o check_md5.o check_arc.o check_irc.o check_help.o check_user.o check_crypting.o check_set.o check_jabber_sasl.o check_jabber_util.o 16 16 17 17 check: $(test_objs) $(addprefix ../, $(main_objs)) ../protocols/protocols.o ../lib/lib.o -
tests/check.c
redc767b r3e6764a 69 69 Suite *jabber_sasl_suite(void); 70 70 71 /* From check_jabber_sasl.c */ 72 Suite *jabber_util_suite(void); 73 71 74 int main (int argc, char **argv) 72 75 { … … 115 118 srunner_add_suite(sr, set_suite()); 116 119 srunner_add_suite(sr, jabber_sasl_suite()); 120 srunner_add_suite(sr, jabber_util_suite()); 117 121 if (no_fork) 118 122 srunner_set_fork_status(sr, CK_NOFORK); -
tests/check_jabber_sasl.c
redc767b r3e6764a 5 5 #include <string.h> 6 6 #include <stdio.h> 7 #include "arc.h"8 7 9 8 char *sasl_get_part( char *data, char *field );
Note: See TracChangeset
for help on using the changeset viewer.