aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/tests/linked_list_test.h
diff options
context:
space:
mode:
authorJan Hutter <jhutter@hsr.ch>2005-11-03 18:22:07 +0000
committerJan Hutter <jhutter@hsr.ch>2005-11-03 18:22:07 +0000
commitef23cd28c1dcc851e44dc632f36476d6310f0870 (patch)
tree461099e3d91b1d5e3fd6a8921d71c9a106376eac /Source/charon/tests/linked_list_test.h
parent5ea755119547a93daed2b2a5447d470c0339a367 (diff)
downloadstrongswan-ef23cd28c1dcc851e44dc632f36476d6310f0870.tar.bz2
strongswan-ef23cd28c1dcc851e44dc632f36476d6310f0870.tar.xz
- Tests more documented
Diffstat (limited to 'Source/charon/tests/linked_list_test.h')
-rw-r--r--Source/charon/tests/linked_list_test.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/Source/charon/tests/linked_list_test.h b/Source/charon/tests/linked_list_test.h
index c1b162e70..b78158822 100644
--- a/Source/charon/tests/linked_list_test.h
+++ b/Source/charon/tests/linked_list_test.h
@@ -24,13 +24,21 @@
#define LINKED_LIST_TEST_H_
/**
- * @brief Tes function for the type linked_list_t
+ * @brief Test function for the type linked_list_t
+ *
+ * Performs different kinds of assertions to check the functionality
+ * of the linked_list_t in a Single-Threaded environment.
*
+ * @warning To be usable in multi-threaded software
+ * this list has to get protected with locks.
+ *
* @param tester tester object
*/
void test_linked_list(tester_t *tester);
-
+/**
+ * Test for linked_list_t
+ */
test_t linked_list_test = {test_linked_list,"Linked List"};
#endif /*LINKED_LIST_TEST_H_*/