OSDN Git Service

unite extbbslist_t test.
authorornse01 <ornse01@users.sourceforge.jp>
Sun, 15 Apr 2012 09:03:55 +0000 (09:03 +0000)
committerornse01 <ornse01@users.sourceforge.jp>
Sun, 15 Apr 2012 09:03:55 +0000 (09:03 +0000)
git-svn-id: http://svn.sourceforge.jp/svnroot/bchan/bchanl/trunk@439 20a0b8eb-f62a-4a12-8fe1-b598822500fb

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

index 10dc730..8635fae 100644 (file)
@@ -38,7 +38,7 @@ VPATH = $(S)
 HEADER := $(S) $(HEADER) ../src/bchanf/src
 
 # ¥½¡¼¥¹¥Õ¥¡¥¤¥ë
-SRC =  test_main.c unittest_driver.c subjectcache.c test_subjectcache.c subjectparser.c test_subjectparser.c subjectlayout.c test_subjectlayout.c cache.c bbsmenucache.c test_bbsmenucache.c bbsmenuparser.c test_bbsmenuparser.c bbsmenulayout.c test_bbsmenulayout.c tadlib.c bbsmenufilter.c test_bbsmenufilter.c subjectlist.c test_subjectlist.c
+SRC =  test_main.c unittest_driver.c subjectcache.c test_subjectcache.c subjectparser.c test_subjectparser.c subjectlayout.c test_subjectlayout.c cache.c bbsmenucache.c test_bbsmenucache.c bbsmenuparser.c test_bbsmenuparser.c bbsmenulayout.c test_bbsmenulayout.c tadlib.c bbsmenufilter.c test_bbsmenufilter.c subjectlist.c test_subjectlist.c extbbslist.c test_extbbslist.c
 
 # ¥Ç¡¼¥¿¥Ü¥Ã¥¯¥¹¥½¡¼¥¹¥Õ¥¡¥¤¥ë
 DBSRC =
index 867ba92..76d9b97 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test.h
  *
- * Copyright (c) 2009-2011 project bchan
+ * Copyright (c) 2009-2012 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
@@ -54,4 +54,7 @@ IMPORT VOID test_bbsmnlayout_main(unittest_driver_t *driver);
 /* test_bbsmenufilter.c */
 IMPORT VOID test_bbsmnfilter_main(unittest_driver_t *driver);
 
+/* test_extbbslist.c */
+IMPORT VOID test_extbbslist_main(unittest_driver_t *driver);
+
 #endif
index a87e5b7..6c3f0e3 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * test_main.c
  *
- * Copyright (c) 2009-2011 project bchan
+ * Copyright (c) 2009-2012 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
@@ -48,6 +48,7 @@ EXPORT        W       MAIN(MESSAGE *msg)
        test_bbsmnparser_main(driver);
        test_bbsmnlayout_main(driver);
        test_bbsmnfilter_main(driver);
+       test_extbbslist_main(driver);
 
        unittest_driver_runnning(driver);
        unittest_driver_delete(driver);