OSDN Git Service

unite texteditor_stackfilter_t.
authorornse01 <ornse01@users.sourceforge.jp>
Tue, 23 Sep 2014 16:50:44 +0000 (16:50 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Tue, 23 Sep 2014 16:50:44 +0000 (16:50 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanf/trunk@631 20a0b8eb-f62a-4a12-8fe1-b598822500fb

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

index e2d6f4b..17b17fa 100644 (file)
@@ -110,11 +110,13 @@ SRC_CSS_TEST =    test_cssrendering_box.c \
 
 SRC_CONTROL =  texteditor_textfragment.c \
                texteditor_characterstate.c \
-               texteditor_insertfilter.c
+               texteditor_insertfilter.c \
+               texteditor_stackfilter.c
 
 SRC_CONTROL_TEST =     test_texteditor_textfragment.c \
                        test_texteditor_characterstate.c \
-                       test_texteditor_insertfilter.c
+                       test_texteditor_insertfilter.c \
+                       test_texteditor_stackfilter.c
 
 SRC =  test_main.c $(SRC_UNITTEST) $(SRC_HTTP) $(SRC_HTTP_TEST) $(SRC_PARSE) $(SRC_PARSE_TEST) $(SRC_COLL) $(SRC_COLL_TEST) $(SRC_CODING) $(SRC_CODING_TEST) $(SRC_TAD) $(SRC_TAD_TEST) $(SRC_CSS) $(SRC_CSS_TEST) $(SRC_CONTROL) $(SRC_CONTROL_TEST)
 
index 45613e2..92331b1 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_control.h
  *
- * Copyright (c) 2013 project bchan
+ * Copyright (c) 2013-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
@@ -31,6 +31,7 @@
 #define __TEST_CONTROL_H__
 
 IMPORT VOID test_texteditor_characterstate_main(unittest_driver_t *driver);
+IMPORT VOID test_texteditor_stackfilter_main(unittest_driver_t *driver);
 IMPORT VOID test_texteditor_insertfilter_main(unittest_driver_t *driver);
 IMPORT VOID test_texteditor_textfragment_main(unittest_driver_t *driver);
 
index b0b05d5..f1e238a 100644 (file)
@@ -84,6 +84,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_cssrendering_coordinate_main(driver);
 
        test_texteditor_characterstate_main(driver);
+       test_texteditor_stackfilter_main(driver);
        test_texteditor_insertfilter_main(driver);
        test_texteditor_textfragment_main(driver);