My favorites | Sign in
Google
                
Details: Show all Hide all

Last 30 days

  • Nov 25, 2009
    issue 17 (a warning-clean patch based on svn r.42) reported by gaozm55   -   What steps will reproduce the problem? 1. gcc/g++ warns when compiling cmockery.c with some options such as -Wall What is the expected output? What do you see instead? no output What version of the product are you using? On what operating system? version: svn r.42 system: Windows XP SP3 compiler: gcc 3/4 and g++3/4 in mingw Please provide any additional information below. with this patch, we clean the warnings when gcc -c -std=c99 -O6 -Os -Wall -Wextra -Werror -pedantic g++ -c -O6 -Os -Wall -Wextra -Werror
    What steps will reproduce the problem? 1. gcc/g++ warns when compiling cmockery.c with some options such as -Wall What is the expected output? What do you see instead? no output What version of the product are you using? On what operating system? version: svn r.42 system: Windows XP SP3 compiler: gcc 3/4 and g++3/4 in mingw Please provide any additional information below. with this patch, we clean the warnings when gcc -c -std=c99 -O6 -Os -Wall -Wextra -Werror -pedantic g++ -c -O6 -Os -Wall -Wextra -Werror
  • Nov 25, 2009
    issue 6 (IsDebuggerPresent() function is not declared in Visual Studi...) commented on by gaozm55   -   just add #define _WIN32_WINNT 0x0400 before #include <windows.h> may be a better methord.
    just add #define _WIN32_WINNT 0x0400 before #include <windows.h> may be a better methord.

Earlier this year

  • Nov 16, 2009
    issue 16 (COPYING appears to contradict actual license) reported by matslina   -   COPYING[1] (incorrectly) indicates that cmockery is distributed under a BSD license. [1] http://code.google.com/p/cmockery/source/browse/trunk/COPYING
    COPYING[1] (incorrectly) indicates that cmockery is distributed under a BSD license. [1] http://code.google.com/p/cmockery/source/browse/trunk/COPYING
  • Oct 15, 2009
    issue 15 (Problem when mocking printf) reported by Cedric.Meuter   -   What steps will reproduce the problem? When testing a function, say "foo", that uses "printf", if I a mock "printf" using mock() and check_expected() and write a test for "foo", when executing the test, cmockery crashes (segfault). Here is a small snippet of code illustrating what I mean: // foo.c int foo() { return printf("toto"); } // foo_test.c int printf(const char *format, ...) { check_expected(format); return (int)mock(); } void my_test(void **state) { expect_string(printf, format, "toto"); will_return(printf, 30); assert_int_equal(foo(), 30); } When executing the test, the program segfaults. Here is the gdb backtrace: Program received signal SIGSEGV, Segmentation fault. 0x0804928b in list_find () (gdb) bt #0 0x0804928b in list_find () #1 0x080495fb in get_symbol_value () #2 0x0804a6ff in _check_expected () #3 0x08048ce3 in printf () #4 0x0804aff0 in vprint_message () #5 0x0804b057 in print_message () #6 0x0804b106 in _run_test () #7 0x0804b3d1 in _run_tests () #8 0x08048db3 in main () What is the expected output? What do you see instead? the test should pass (?) What version of the product are you using? On what operating system? cmockery 0.1.2 on linux (debian 4.1.1-21) with gcc 4.1.2 I attached the code provoking the buf... Otherwise cmockery rules! ;-) Thanks for looking into this!
    What steps will reproduce the problem? When testing a function, say "foo", that uses "printf", if I a mock "printf" using mock() and check_expected() and write a test for "foo", when executing the test, cmockery crashes (segfault). Here is a small snippet of code illustrating what I mean: // foo.c int foo() { return printf("toto"); } // foo_test.c int printf(const char *format, ...) { check_expected(format); return (int)mock(); } void my_test(void **state) { expect_string(printf, format, "toto"); will_return(printf, 30); assert_int_equal(foo(), 30); } When executing the test, the program segfaults. Here is the gdb backtrace: Program received signal SIGSEGV, Segmentation fault. 0x0804928b in list_find () (gdb) bt #0 0x0804928b in list_find () #1 0x080495fb in get_symbol_value () #2 0x0804a6ff in _check_expected () #3 0x08048ce3 in printf () #4 0x0804aff0 in vprint_message () #5 0x0804b057 in print_message () #6 0x0804b106 in _run_test () #7 0x0804b3d1 in _run_tests () #8 0x08048db3 in main () What is the expected output? What do you see instead? the test should pass (?) What version of the product are you using? On what operating system? cmockery 0.1.2 on linux (debian 4.1.1-21) with gcc 4.1.2 I attached the code provoking the buf... Otherwise cmockery rules! ;-) Thanks for looking into this!
  • Aug 31, 2009
    Cmockery_Unit_Testing_Framework Wiki page commented on by yurenjimi   -   Hi, all #include <cmockery.h> *change* to #include <google/cmockery.h>
    Hi, all #include <cmockery.h> *change* to #include <google/cmockery.h>
  • Aug 28, 2009
    r42 (* Fixed assert_*() macros so they no longer truncate values ...) committed by stewartamiles   -   * Fixed assert_*() macros so they no longer truncate values to int. * Fixed printf format specifier for unsigned long long. * Worked around a 64-bit gcc warning when casting a 32-bit integer to a pointer in the expect_assert_failure() macro.
    * Fixed assert_*() macros so they no longer truncate values to int. * Fixed printf format specifier for unsigned long long. * Worked around a 64-bit gcc warning when casting a 32-bit integer to a pointer in the expect_assert_failure() macro.
  • Aug 18, 2009
    issue 14 (Add headers for regular case) reported by tom...@spotify.com   -   Hi! I think adding the standard required headers within #if/#endif would reduce the code needed to bootstrap a new test. #ifndef CMOCKERY_NO_STANDARD_HEADERS #include <stdarg.h> #include <stddef.h> #include <setjmp.h> #endif
    Hi! I think adding the standard required headers within #if/#endif would reduce the code needed to bootstrap a new test. #ifndef CMOCKERY_NO_STANDARD_HEADERS #include <stdarg.h> #include <stddef.h> #include <setjmp.h> #endif
  • Aug 14, 2009
    r41 (Fixed memory_not_equal_display_error() to display an error i...) committed by stewartamiles   -   Fixed memory_not_equal_display_error() to display an error if memory blocks are the same.
    Fixed memory_not_equal_display_error() to display an error if memory blocks are the same.
  • Jul 23, 2009
    r40 (Fixed internal links (<a href="#.*">) to headings that conta...) committed by stewartamiles   -   Fixed internal links (<a href="#.*">) to headings that contain spaces when index.html is converted to wiki format.
    Fixed internal links (<a href="#.*">) to headings that contain spaces when index.html is converted to wiki format.
  • Jul 23, 2009
    r39 (* Added bash (awk / sed) script to convert cmockery's html d...) committed by stewartamiles   -   * Added bash (awk / sed) script to convert cmockery's html docs to a googlecode.com wiki. * Modified index.html slightly to make the conversion from html to wiki easier.
    * Added bash (awk / sed) script to convert cmockery's html docs to a googlecode.com wiki. * Modified index.html slightly to make the conversion from html to wiki easier.
  • Jul 23, 2009
    r38 (Fixed truncation in integer range checking event structure t...) committed by stewartamiles   -   Fixed truncation in integer range checking event structure to store min and max values as LargestIntegralType rather than int.
    Fixed truncation in integer range checking event structure to store min and max values as LargestIntegralType rather than int.
  • Jul 23, 2009
    r37 (* Support for mocking long long (>= 64-bit) parameters. * Ch...) committed by stewartamiles   -   * Support for mocking long long (>= 64-bit) parameters. * Changed tabs to spaces in cmockery.c/.h to be consistent with the other source files. * Deleted all trailing whitespace. * Fixed warnings introduced in tests after adding support for 64-bit mocks.
    * Support for mocking long long (>= 64-bit) parameters. * Changed tabs to spaces in cmockery.c/.h to be consistent with the other source files. * Deleted all trailing whitespace. * Fixed warnings introduced in tests after adding support for 64-bit mocks.
  • Jul 23, 2009
    r36 (Deleted all trailing whitespace from cmockery source files. ...) committed by stewartamiles   -   Deleted all trailing whitespace from cmockery source files.
    Deleted all trailing whitespace from cmockery source files.
  • Jul 23, 2009
    r35 (Modified the windows makefile for cmockery to enable debug m...) committed by stewartamiles   -   Modified the windows makefile for cmockery to enable debug mode.
    Modified the windows makefile for cmockery to enable debug mode.
  • Jul 23, 2009
    r34 (Integrated fix for cmockery "Issue 3: malloc.h not found on ...) committed by stewartamiles   -   Integrated fix for cmockery "Issue 3: malloc.h not found on Mac OS Leopard".
    Integrated fix for cmockery "Issue 3: malloc.h not found on Mac OS Leopard".
  • Jul 23, 2009
    r33 (Fixed cmockery "Issue 9: assert_macro.c" Reported by khb...) committed by stewartamiles   -   Fixed cmockery "Issue 9: assert_macro.c" Reported by khb.hnu, Apr 12, 2009 Line30: for (i = 0; i < sizeof(status_code_string) / sizeof(status_code_string[0]); change it as follow: for (i = 0; i < sizeof(status_code_strings) / sizeof(status_code_strings[0]);
    Fixed cmockery "Issue 9: assert_macro.c" Reported by khb.hnu, Apr 12, 2009 Line30: for (i = 0; i < sizeof(status_code_string) / sizeof(status_code_string[0]); change it as follow: for (i = 0; i < sizeof(status_code_strings) / sizeof(status_code_strings[0]);
  • Jul 23, 2009
    r32 (Fix for "Issue 7: value_in_set_display_error() falsely repor...) committed by stewartamiles   -   Fix for "Issue 7: value_in_set_display_error() falsely reports errors." reported on code.google.com/p/cmockery.
    Fix for "Issue 7: value_in_set_display_error() falsely reports errors." reported on code.google.com/p/cmockery.
  • Jul 23, 2009
    r31 (Fixed Issue 6 from code.google.com/p/cmockery : IsDebuggerPr...) committed by stewartamiles   -   Fixed Issue 6 from code.google.com/p/cmockery : IsDebuggerPresent() function is not declared in Visual Studion 2005 and lower
    Fixed Issue 6 from code.google.com/p/cmockery : IsDebuggerPresent() function is not declared in Visual Studion 2005 and lower
  • Jul 23, 2009
    r30 (Fixed code.google.com/p/cmockery Issue 5: Using will_return_...) committed by stewartamiles   -   Fixed code.google.com/p/cmockery Issue 5: Using will_return_count with count=-1 (to always repeat return value) results in assertion failure.
    Fixed code.google.com/p/cmockery Issue 5: Using will_return_count with count=-1 (to always repeat return value) results in assertion failure.
  • Jul 23, 2009
    r29 (* Modified cmockery's windows makefile so that it's possible...) committed by stewartamiles   -   * Modified cmockery's windows makefile so that it's possible to build the library from any current directory.
    * Modified cmockery's windows makefile so that it's possible to build the library from any current directory.
  • Jul 23, 2009
    r28 (Integrated patch from "code.google.com/p/cmockery Issue 4: [...) committed by stewartamiles   -   Integrated patch from "code.google.com/p/cmockery Issue 4: [PATCH] Support for "out of source-tree" builds"
    Integrated patch from "code.google.com/p/cmockery Issue 4: [PATCH] Support for "out of source-tree" builds"
  • Jul 22, 2009
  • Jul 22, 2009
  • Jul 21, 2009
    issue 13 (stdout and stderr outputs could be messed up) reported by ade...@gmail.com   -   What steps will reproduce the problem? 1. compile the standard cmockery example 'assert_macro_test.exe' on Windows 2. execute "assert_macro_test.exe 1>output 2>&1" What is the expected output? What do you see instead? The file "output" should contain: get_status_code_string_test: Starting test "Connection dropped" != "Connection timed out" ERROR: ..\src\example\assert_macro_test.c:29 Failure! get_status_code_string_test: Test failed. string_to_status_code_test: Starting test 0x2 != 0x1 ERROR: ..\src\example\assert_macro_test.c:35 Failure! string_to_status_code_test: Test failed. 2 out of 2 tests failed! get_status_code_string_test string_to_status_code_test but it contains: get_status_code_string_test: Starting test get_status_code_string_test: Test failed. string_to_status_code_test: Starting test string_to_status_code_test: Test failed. "Connection dropped" != "Connection timed out" ERROR: ..\src\example\assert_macro_test.c:29 Failure! 0x2 != 0x1 ERROR: ..\src\example\assert_macro_test.c:35 Failure! 2 out of 2 tests failed! get_status_code_string_test string_to_status_code_test What version of the product are you using? On what operating system? 1. cmockery 0.1.2 2. Windows XP SP3 3. Visual Studio 2008 Please provide any additional information below. fflush() function should be called after each line printed to the stdout or stderr. The patch below fixes this problem: --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 10:24:14 2009 @@ -1449,6 +1449,7 @@ char buffer[1024]; vsnprintf(buffer, sizeof(buffer), format, args); printf(buffer); + fflush(stdout); #ifdef _WIN32 OutputDebugString(buffer); #endif // _WIN32 @@ -1459,6 +1460,7 @@ char buffer[1024]; vsnprintf(buffer, sizeof(buffer), format, args); fprintf(stderr, buffer); + fflush(stderr); #ifdef _WIN32 OutputDebugString(buffer); #endif // _WIN32
    What steps will reproduce the problem? 1. compile the standard cmockery example 'assert_macro_test.exe' on Windows 2. execute "assert_macro_test.exe 1>output 2>&1" What is the expected output? What do you see instead? The file "output" should contain: get_status_code_string_test: Starting test "Connection dropped" != "Connection timed out" ERROR: ..\src\example\assert_macro_test.c:29 Failure! get_status_code_string_test: Test failed. string_to_status_code_test: Starting test 0x2 != 0x1 ERROR: ..\src\example\assert_macro_test.c:35 Failure! string_to_status_code_test: Test failed. 2 out of 2 tests failed! get_status_code_string_test string_to_status_code_test but it contains: get_status_code_string_test: Starting test get_status_code_string_test: Test failed. string_to_status_code_test: Starting test string_to_status_code_test: Test failed. "Connection dropped" != "Connection timed out" ERROR: ..\src\example\assert_macro_test.c:29 Failure! 0x2 != 0x1 ERROR: ..\src\example\assert_macro_test.c:35 Failure! 2 out of 2 tests failed! get_status_code_string_test string_to_status_code_test What version of the product are you using? On what operating system? 1. cmockery 0.1.2 2. Windows XP SP3 3. Visual Studio 2008 Please provide any additional information below. fflush() function should be called after each line printed to the stdout or stderr. The patch below fixes this problem: --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 10:24:14 2009 @@ -1449,6 +1449,7 @@ char buffer[1024]; vsnprintf(buffer, sizeof(buffer), format, args); printf(buffer); + fflush(stdout); #ifdef _WIN32 OutputDebugString(buffer); #endif // _WIN32 @@ -1459,6 +1460,7 @@ char buffer[1024]; vsnprintf(buffer, sizeof(buffer), format, args); fprintf(stderr, buffer); + fflush(stderr); #ifdef _WIN32 OutputDebugString(buffer); #endif // _WIN32
  • Jul 21, 2009
    issue 12 (char* to int conversion truncation warning on HP-UX in 64-b...) reported by ade...@gmail.com   -   What steps will reproduce the problem? 1. execute "cc +DD64 -c -I../include cmockery.c" What is the expected output? What do you see instead? Nothing should be printed but it says: "cmockery.c", line 1657: warning #2069-D: integer conversion resulted in truncation assert_false("BUG: shouldn't be here!"); What version of the product are you using? On what operating system? 1. cmockery-0.1.2 2. HP-UX 11 IA64 v3 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license cc --version cc: HP C/aC++ B3910B A.06.22 [Nov 14 2008] Please provide any additional information below. The statement causing the warning should be fixed anyway. The patch below does it as the HP-UX workaround: --- cmockery.c Sat Aug 30 02:55:53 2008 +++ cmockery.c Tue Jul 21 10:46:56 2009 @@ -1650,7 +1650,9 @@ } break; default: +#ifdef _HPUX assert_false("BUG: shouldn't be here!"); +#endif break; } Using _HPUX macro allows to compile on HP-UX without this warning.
    What steps will reproduce the problem? 1. execute "cc +DD64 -c -I../include cmockery.c" What is the expected output? What do you see instead? Nothing should be printed but it says: "cmockery.c", line 1657: warning #2069-D: integer conversion resulted in truncation assert_false("BUG: shouldn't be here!"); What version of the product are you using? On what operating system? 1. cmockery-0.1.2 2. HP-UX 11 IA64 v3 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license cc --version cc: HP C/aC++ B3910B A.06.22 [Nov 14 2008] Please provide any additional information below. The statement causing the warning should be fixed anyway. The patch below does it as the HP-UX workaround: --- cmockery.c Sat Aug 30 02:55:53 2008 +++ cmockery.c Tue Jul 21 10:46:56 2009 @@ -1650,7 +1650,9 @@ } break; default: +#ifdef _HPUX assert_false("BUG: shouldn't be here!"); +#endif break; } Using _HPUX macro allows to compile on HP-UX without this warning.
  • Jul 21, 2009
    issue 11 (strsignal() function is on available on HP-UX IA64 v3) reported by ade...@gmail.com   -   What steps will reproduce the problem? 1. compile any unit tests bundle and link it against cmockery What is the expected output? What do you see instead? Linking fails with the following error: ld: Unsatisfied symbol "strsignal" in file cmockery.o What version of the product are you using? On what operating system? 1. cmockery-0.1.2 2. HP-UX 11 IA64 v3 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license Please provide any additional information below. The 'strsignal()' function is not available on HP-UX. The following is not a proper solution but the workaround. Using _HPUX macro allows to link successfully on HP-UX. --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 10:44:53 2009 @@ -1402,7 +1402,11 @@ #ifndef _WIN32 static void exception_handler(int sig) { +#ifdef _HPUX + print_error("%d\n", sig); +#else print_error("%s\n", strsignal(sig)); +#endif exit_test(1); }
    What steps will reproduce the problem? 1. compile any unit tests bundle and link it against cmockery What is the expected output? What do you see instead? Linking fails with the following error: ld: Unsatisfied symbol "strsignal" in file cmockery.o What version of the product are you using? On what operating system? 1. cmockery-0.1.2 2. HP-UX 11 IA64 v3 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license Please provide any additional information below. The 'strsignal()' function is not available on HP-UX. The following is not a proper solution but the workaround. Using _HPUX macro allows to link successfully on HP-UX. --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 10:44:53 2009 @@ -1402,7 +1402,11 @@ #ifndef _WIN32 static void exception_handler(int sig) { +#ifdef _HPUX + print_error("%d\n", sig); +#else print_error("%s\n", strsignal(sig)); +#endif exit_test(1); }
  • Jul 21, 2009
    issue 10 (Integer conversion warning on HP-UX) reported by ade...@gmail.com   -   What steps will reproduce the problem on HP-UX? 1. execute "cc -c -I../include cmockery.c" What is the expected output? What do you see instead? Nothing should be printed. But it says: "cmockery.c", line 1679: warning #2068-D: integer conversion resulted in a change of sign total_failed = -1; ^ What version of the product are you using? On what operating system? 1. cmockery 0.1.2 2. HP-UX IA64 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license Please provide any additional information below. Following patch removes this warning: --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 11:00:53 2009 @@ -1670,7 +1670,7 @@ if (number_of_test_states) { print_error("Mismatched number of setup %d and teardown %d " "functions\n", setups, teardowns); - total_failed = -1; + total_failed = (size_t)-1; } free(test_states);
    What steps will reproduce the problem on HP-UX? 1. execute "cc -c -I../include cmockery.c" What is the expected output? What do you see instead? Nothing should be printed. But it says: "cmockery.c", line 1679: warning #2068-D: integer conversion resulted in a change of sign total_failed = -1; ^ What version of the product are you using? On what operating system? 1. cmockery 0.1.2 2. HP-UX IA64 uname -a HP-UX hpitv3 B.11.31 U ia64 0383467329 unlimited-user license Please provide any additional information below. Following patch removes this warning: --- cmockery.c Sat Aug 30 02:55:54 2008 +++ cmockery.c Tue Jul 21 11:00:53 2009 @@ -1670,7 +1670,7 @@ if (number_of_test_states) { print_error("Mismatched number of setup %d and teardown %d " "functions\n", setups, teardowns); - total_failed = -1; + total_failed = (size_t)-1; } free(test_states);
  • Jul 20, 2009
  • Jul 20, 2009
  • Jul 20, 2009
  • Jul 20, 2009
    Cmockery_Unit_Testing_Framework Wiki page deleted by stewartamiles
  • Jul 20, 2009
  • Jul 20, 2009
    PageName Wiki page deleted by stewartamiles
  • Jul 20, 2009
    PageName Wiki page added by stewartamiles
  • Jul 07, 2009
    issue 9 (assert_macro.c) Status changed by stewartamiles   -  
    Status: Started
    Status: Started
  • Jul 07, 2009
    issue 2 (Doing a mockup of a function which have a long long (>32 bit...) Status changed by stewartamiles   -  
    Status: Started
    Status: Started
  • Jul 07, 2009
    issue 3 (malloc.h not found on Mac OS Leopard) Status changed by stewartamiles   -  
    Status: Started
    Status: Started
  • Jul 07, 2009
    issue 9 (assert_macro.c) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 7 (value_in_set_display_error() falsely reports errors.) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 6 (IsDebuggerPresent() function is not declared in Visual Studi...) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 5 (Using will_return_count with count=-1 (to always repeat retu...) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 3 (malloc.h not found on Mac OS Leopard) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 2 (Doing a mockup of a function which have a long long (>32 bit...) commented on by stewartamiles   -   The fix for this will be integrated into cmockery release 0.1.3.
    The fix for this will be integrated into cmockery release 0.1.3.
  • Jul 07, 2009
    issue 4 ([PATCH] Support for "out of source-tree" builds) commented on by stewartamiles   -   This will be integrated into cmockery release 0.1.3.
    This will be integrated into cmockery release 0.1.3.
  • Jul 06, 2009
    issue 3 (malloc.h not found on Mac OS Leopard) Owner changed by stewartamiles   -  
    Owner: stewartamiles
    Owner: stewartamiles
  • Jul 06, 2009
    issue 9 (assert_macro.c) Owner changed by stewartamiles   -  
    Owner: stewartamiles
    Owner: stewartamiles
  • May 31, 2009
    issue 3 (malloc.h not found on Mac OS Leopard) commented on by wit...@pobox.com   -   Since you're using configure which is testing for malloc.h, I've attached a patch that gets this to build on Mac OS X 10.5.7 (Xcode 3.1.2) with HAVE_MALLOC_H. Note that I also added an include for sys/types.h to get size_t in src/example/allocate_module.c.
    Since you're using configure which is testing for malloc.h, I've attached a patch that gets this to build on Mac OS X 10.5.7 (Xcode 3.1.2) with HAVE_MALLOC_H. Note that I also added an include for sys/types.h to get size_t in src/example/allocate_module.c.
  • Apr 12, 2009
    issue 9 (assert_macro.c) reported by khb.hnu   -   Line30: for (i = 0; i < sizeof(status_code_string) / sizeof(status_code_string[0]); change it as follow: for (i = 0; i < sizeof(status_code_strings) / sizeof(status_code_strings[0]);
    Line30: for (i = 0; i < sizeof(status_code_string) / sizeof(status_code_string[0]); change it as follow: for (i = 0; i < sizeof(status_code_strings) / sizeof(status_code_strings[0]);
  • Apr 10, 2009
    issue 3 (malloc.h not found on Mac OS Leopard) Owner changed by stewartamiles   -   I don't have a configuration to reproduce this. If someone sends me a patch I'll integrate the fix.
    Owner: ---
    I don't have a configuration to reproduce this. If someone sends me a patch I'll integrate the fix.
    Owner: ---
  • Apr 10, 2009
    issue 7 (value_in_set_display_error() falsely reports errors.) Owner changed by stewartamiles   -  
    Owner: stewartamiles
    Owner: stewartamiles