OSDN Git Service

unite test cases.
authorornse01 <ornse01@users.sourceforge.jp>
Tue, 12 Aug 2014 17:19:17 +0000 (17:19 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Tue, 12 Aug 2014 17:19:17 +0000 (17:19 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@619 20a0b8eb-f62a-4a12-8fe1-b598822500fb

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

index 83dc035..f722fae 100644 (file)
@@ -88,7 +88,8 @@ SRC_TAD =     taditerator.c \
                tadlexer_le.c \
                traydata_iterator.c \
                tadfragment.c \
-               tadlangcode.c
+               tadlangcode.c \
+               taddecoder.c
 
 SRC_TAD_TEST =         test_taditerator.c \
                test_tadstack.c \
@@ -96,7 +97,8 @@ SRC_TAD_TEST =        test_taditerator.c \
                test_tadlexer_le.c \
                test_traydata_iterator.c \
                test_tadfragment.c \
-               test_tadlangcode.c
+               test_tadlangcode.c \
+               test_taddecoder.c
 
 SRC_CSS =      cssrendering_box.c \
                cssrendering_coordinate.c
index 4e0962c..cf30915 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_tad.h
  *
- * Copyright (c) 2012-2013 project bchan
+ * Copyright (c) 2012-2014 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
@@ -37,5 +37,6 @@ IMPORT VOID test_tadlexer_le_main(unittest_driver_t *driver);
 IMPORT VOID test_traydata_iterator_main(unittest_driver_t *driver);
 IMPORT VOID test_tadfragment_main(unittest_driver_t *driver);
 IMPORT VOID test_tadlangcode_main(unittest_driver_t *driver);
+IMPORT VOID test_taddecoder_main(unittest_driver_t *driver);
 
 #endif
index 2004642..9243918 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_main.c
  *
- * Copyright (c) 2012-2013 project bchan
+ * Copyright (c) 2012-2014 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
@@ -77,6 +77,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_traydata_iterator_main(driver);
        test_tadfragment_main(driver);
        test_tadlangcode_main(driver);
+       test_taddecoder_main(driver);
 
        test_cssrendering_box_main(driver);
        test_cssrendering_coordinate_main(driver);