OSDN Git Service

unite htmlform_urlencode
authorornse01 <ornse01@users.sourceforge.jp>
Wed, 18 Mar 2015 15:43:24 +0000 (15:43 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Wed, 18 Mar 2015 15:43:24 +0000 (15:43 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@666 20a0b8eb-f62a-4a12-8fe1-b598822500fb

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

index b5bbf70..db91da3 100644 (file)
@@ -77,10 +77,12 @@ SRC_COLL_TEST =     test_idtocb.c \
                test_wordarray.c
 
 SRC_CODING =   base64encoder.c \
                test_wordarray.c
 
 SRC_CODING =   base64encoder.c \
-               base64decoder.c
+               base64decoder.c \
+               htmlform_urlencoder.c
 
 SRC_CODING_TEST =      test_base64encoder.c \
 
 SRC_CODING_TEST =      test_base64encoder.c \
-                       test_base64decoder.c
+                       test_base64decoder.c \
+                       test_htmlform_urlencoder.c
 
 SRC_TAD =      taditerator.c \
                tadstack.c \
 
 SRC_TAD =      taditerator.c \
                tadstack.c \
index 3e4f114..d07b9f0 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_coding.h
  *
 /*
  * test_coding.h
  *
- * Copyright (c) 2012 project bchan
+ * Copyright (c) 2012-2015 project bchan
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
@@ -32,5 +32,6 @@
 
 IMPORT VOID test_base64encoder_main(unittest_driver_t *driver);
 IMPORT VOID test_base64decoder_main(unittest_driver_t *driver);
 
 IMPORT VOID test_base64encoder_main(unittest_driver_t *driver);
 IMPORT VOID test_base64decoder_main(unittest_driver_t *driver);
+IMPORT VOID test_htmlform_urlencoder_main(unittest_driver_t *driver);
 
 #endif
 
 #endif
index d89e948..681610a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_main.c
  *
 /*
  * test_main.c
  *
- * Copyright (c) 2012-2014 project bchan
+ * Copyright (c) 2012-2015 project bchan
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
  *
  * This software is provided 'as-is', without any express or implied
  * warranty. In no event will the authors be held liable for any damages
@@ -68,6 +68,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
 
        test_base64encoder_main(driver);
        test_base64decoder_main(driver);
 
        test_base64encoder_main(driver);
        test_base64decoder_main(driver);
+       test_htmlform_urlencoder_main(driver);
 
        test_taditerator_main(driver);
        test_tadstack_main(driver);
 
        test_taditerator_main(driver);
        test_tadstack_main(driver);