OSDN Git Service

unite bytearray_t.
authorornse01 <ornse01@users.sourceforge.jp>
Sun, 12 May 2013 08:26:41 +0000 (08:26 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Sun, 12 May 2013 08:26:41 +0000 (08:26 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@564 20a0b8eb-f62a-4a12-8fe1-b598822500fb

src/Makefile.lib
src/Makefile.test
src/coll/test_coll.h
src/test_main.c

index 34acfea..d369f4a 100644 (file)
@@ -56,7 +56,8 @@ SRC_PARSE =   tokenchecker.c \
 
 SRC_COLL =     idtocb.c \
                arraybase.c \
-               treebase.c
+               treebase.c \
+               bytearray.c
 
 SRC_CODING =   base64encoder.c \
                base64decoder.c
index 0a699c0..2fbf4ca 100644 (file)
@@ -66,11 +66,13 @@ SRC_PARSE_TEST =    test_tokenchecker.c \
 
 SRC_COLL =     idtocb.c \
                arraybase.c \
-               treebase.c
+               treebase.c \
+               bytearray.c
 
 SRC_COLL_TEST =        test_idtocb.c \
                test_arraybase.c \
-               test_treebase.c
+               test_treebase.c \
+               test_bytearray.c
 
 SRC_CODING =   base64encoder.c \
                base64decoder.c
index a04fbac..08d117b 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_coll.h
  *
- * Copyright (c) 2012 project bchan
+ * Copyright (c) 2012-2013 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
@@ -33,5 +33,6 @@
 IMPORT VOID test_idtocb_main(unittest_driver_t *driver);
 EXPORT VOID test_arraybase_main(unittest_driver_t *driver);
 IMPORT VOID test_treebase_main(unittest_driver_t *driver);
+IMPORT VOID test_bytearray_main(unittest_driver_t *driver);
 
 #endif
index d609f33..25e64a6 100644 (file)
@@ -63,6 +63,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_idtocb_main(driver);
        test_arraybase_main(driver);
        test_treebase_main(driver);
+       test_bytearray_main(driver);
 
        test_base64encoder_main(driver);
        test_base64decoder_main(driver);