OSDN Git Service

unite test for http_requestlinestream_t.
authorornse01 <ornse01@users.sourceforge.jp>
Sun, 22 Jan 2012 04:41:07 +0000 (04:41 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Sun, 22 Jan 2012 04:41:07 +0000 (04:41 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@359 20a0b8eb-f62a-4a12-8fe1-b598822500fb

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

index d8164dd..9d01176 100644 (file)
@@ -44,12 +44,14 @@ SRC_HTTP =  http_connector.c \
                http_transferdecoder.c \
                http_contentdecoder.c \
                http_headerlexer.c \
-               http_statuslineparser.c
+               http_statuslineparser.c \
+               http_requestlinestream.c
 
 SRC_HTTP_TEST =        test_http_transferdecoder.c \
                test_http_contentdecoder.c \
                test_http_headerlexer.c \
-               test_http_statuslineparser.c
+               test_http_statuslineparser.c \
+               test_http_requestlinestream.c
 
 SRC_PARSE =    tokenchecker.c \
                charreferparser.c 
index 04dafc2..71a9de2 100644 (file)
@@ -34,5 +34,6 @@ IMPORT VOID test_http_transferdecoder_main(unittest_driver_t *driver);
 IMPORT VOID test_http_contentdecoder_main(unittest_driver_t *driver);
 IMPORT VOID test_http_headerlexer_main(unittest_driver_t *driver);
 IMPORT VOID test_http_statuslineparser_main(unittest_driver_t *driver);
+IMPORT VOID test_http_requestlinestream_main(unittest_driver_t *driver);
 
 #endif
index 4231694..467ad27 100644 (file)
@@ -49,6 +49,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_http_contentdecoder_main(driver);
        test_http_headerlexer_main(driver);
        test_http_statuslineparser_main(driver);
+       test_http_requestlinestream_main(driver);
 
        test_tokenchecker_main(driver);
        test_charreferparser_main(driver);