A C Unit Test Library for C language.
Revisión | 8ab016387ef683f0c033b7905bcb066c3638defe (tree) |
---|---|
Tiempo | 2003-10-02 06:03:07 |
Autor | tsutsumi <> |
Commiter | tsutsumi <> |
# update version
@@ -1,3 +1,8 @@ | ||
1 | +New in CCUnit 1.0rc3 | |
2 | + | |
3 | +* renew test suite code generate function. | |
4 | +* to safe calling ASSERT macros in setUp(). | |
5 | + | |
1 | 6 | New in CCUnit 1.0rc2 |
2 | 7 | |
3 | 8 | * Memory leakage was fixed. |
@@ -19,7 +19,7 @@ dnl If not, write to the Free Software Foundation, Inc., 59 Temple | ||
19 | 19 | dnl Place - Suite 330, Boston, MA 02111-1307, USA. |
20 | 20 | |
21 | 21 | AC_PREREQ(2.50) |
22 | -AC_INIT(CCUnit, 1.0rc2, [tsutsumi@users.sourceforge.jp]) | |
22 | +AC_INIT(CCUnit, 1.0rc3, [tsutsumi@users.sourceforge.jp]) | |
23 | 23 | AC_CONFIG_SRCDIR([configure.ac]) |
24 | 24 | AC_CONFIG_AUX_DIR([config]) |
25 | 25 | AC_CONFIG_HEADER([config/config.h]) |
@@ -59,7 +59,7 @@ AC_FUNC_MALLOC | ||
59 | 59 | AC_FUNC_REALLOC |
60 | 60 | AC_FUNC_VPRINTF |
61 | 61 | AC_CHECK_FUNCS([gettimeofday strerror strncasecmp strrchr memset]) |
62 | -AC_CHECK_FUNCS([atexit onexit], break) | |
62 | +AC_CHECK_FUNCS([atexit on_exit], break) | |
63 | 63 | AC_REPLACE_FUNCS([strdup]) |
64 | 64 | |
65 | 65 | # Initialize the test suite and build position independent wrappers. |