OSDN Git Service

unite base64 encoder tests.
authorornse01 <ornse01@users.sourceforge.jp>
Tue, 13 Sep 2011 11:14:25 +0000 (11:14 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Tue, 13 Sep 2011 11:14:25 +0000 (11:14 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchan/trunk@320 20a0b8eb-f62a-4a12-8fe1-b598822500fb

src/Makefile.test
src/test.h
src/test_main.c

index a0a7360..ac0f317 100644 (file)
@@ -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 =
index e0949a2..98a9a7a 100644 (file)
@@ -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
index 8110fd1..2d25a79 100644 (file)
@@ -61,6 +61,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_httpdateparser_main();
        test_cookiedb_main();
        test_psvlexer_main();
+       test_base64encode_main();
 
        return 0;
 }