From fb4feac5bde131d3f8d10d39abccd434da17cc74 Mon Sep 17 00:00:00 2001 From: ornse01 Date: Tue, 13 Sep 2011 11:14:25 +0000 Subject: [PATCH] unite base64 encoder tests. git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchan/trunk@320 20a0b8eb-f62a-4a12-8fe1-b598822500fb --- src/Makefile.test | 2 +- src/test.h | 3 +++ src/test_main.c | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Makefile.test b/src/Makefile.test index a0a7360..ac0f317 100644 --- a/src/Makefile.test +++ b/src/Makefile.test @@ -38,7 +38,7 @@ VPATH = $(S) HEADER := $(S) $(HEADER) # ¥½¡¼¥¹¥Õ¥¡¥¤¥ë -SRC = test_main.c cache.c test_cache.c parser.c test_parser.c layout.c test_layout.c retriever.c tadlib.c parselib.c test_parselib.c http.c submitutil.c test_submitutil.c sjisstring.c test_sjisstring.c residhash.c test_residhash.c resindexhash.c test_resindexhash.c postres.c test_postres.c tadimf.c test_tadimf.c array.c test_array.c layoutarray.c test_layoutarray.c layoutstyle.c wordlist.c test_wordlist.c tadsearch.c test_tadsearch.c httpheaderlexer.c test_httpheaderlexer.c setcookieheader.c test_setcookieheader.c httpdateparser.c test_httpdateparser.c cookiedb.c test_cookiedb.c psvlexer.c test_psvlexer.c +SRC = test_main.c cache.c test_cache.c parser.c test_parser.c layout.c test_layout.c retriever.c tadlib.c parselib.c test_parselib.c http.c submitutil.c test_submitutil.c sjisstring.c test_sjisstring.c residhash.c test_residhash.c resindexhash.c test_resindexhash.c postres.c test_postres.c tadimf.c test_tadimf.c array.c test_array.c layoutarray.c test_layoutarray.c layoutstyle.c wordlist.c test_wordlist.c tadsearch.c test_tadsearch.c httpheaderlexer.c test_httpheaderlexer.c setcookieheader.c test_setcookieheader.c httpdateparser.c test_httpdateparser.c cookiedb.c test_cookiedb.c psvlexer.c test_psvlexer.c base64encode.c test_base64encode.c # ¥Ç¡¼¥¿¥Ü¥Ã¥¯¥¹¥½¡¼¥¹¥Õ¥¡¥¤¥ë DBSRC = diff --git a/src/test.h b/src/test.h index e0949a2..98a9a7a 100644 --- a/src/test.h +++ b/src/test.h @@ -88,4 +88,7 @@ IMPORT VOID test_cookiedb_main(); /* test_psvlexer.c */ IMPORT VOID test_psvlexer_main(); +/* test_base64encode.c */ +IMPORT VOID test_base64encode_main(); + #endif diff --git a/src/test_main.c b/src/test_main.c index 8110fd1..2d25a79 100644 --- a/src/test_main.c +++ b/src/test_main.c @@ -61,6 +61,7 @@ EXPORT W MAIN(MESSAGE *msg) test_httpdateparser_main(); test_cookiedb_main(); test_psvlexer_main(); + test_base64encode_main(); return 0; } -- 2.11.0