Thu, 04 Oct 2012 16:03:18 +0200
(broken-commit) - added load and store functions, tests failing
some evil crash happens when executing the test - remove the strcmp calls in the test case for the store and load function and everything "works"
the error must be somewhere else - maybe something that should not be freed is freed during the test
39 | 1 | /* |
2 | * | |
3 | */ | |
4 | ||
5 | #ifndef STRING_TESTS_H | |
6 | #define STRING_TESTS_H | |
7 | ||
8 | #include "ucx/test.h" | |
9 | #include "ucx/string.h" | |
10 | ||
11 | #ifdef __cplusplus | |
12 | extern "C" { | |
13 | #endif | |
14 | ||
15 | UCX_TEST_DECLARE(test_sstrsplit) | |
16 | ||
17 | #ifdef __cplusplus | |
18 | } | |
19 | #endif | |
20 | ||
21 | #endif /* MPOOL_TESTS_H */ | |
22 |