aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2005-11-07 15:57:39 +0000
committerMartin Willi <martin@strongswan.org>2005-11-07 15:57:39 +0000
commit6d4f09bc5f764a59a6e7b83856cb8716bc1f540c (patch)
tree29cbcd59b556f741d2dbb4a4439954f384ba2a67 /Source/charon
parente9d8db1cf3eac75899f94da324ec42735c6e81ce (diff)
downloadstrongswan-6d4f09bc5f764a59a6e7b83856cb8716bc1f540c.tar.bz2
strongswan-6d4f09bc5f764a59a6e7b83856cb8716bc1f540c.tar.xz
- added scheduler test
Diffstat (limited to 'Source/charon')
-rw-r--r--Source/charon/tests.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/charon/tests.c b/Source/charon/tests.c
index 84fb8f051..992117976 100644
--- a/Source/charon/tests.c
+++ b/Source/charon/tests.c
@@ -35,6 +35,7 @@
#include "tests/send_queue_test.h"
#include "tests/socket_test.h"
#include "tests/sender_test.h"
+#include "tests/scheduler_test.h"
#include "tests/receiver_test.h"
@@ -87,10 +88,15 @@ test_t thread_pool_test = {test_thread_pool,"Thread Pool"};
test_t sender_test = {test_sender,"Sender"};
/**
+ * Test for scheduler_t
+ */
+test_t scheduler_test = {test_scheduler,"Scheduler"};
+/**
* Test for receiver_t
*/
test_t receiver_test = {test_receiver,"Receiver"};
+
/**
* Global job-queue
*/
@@ -125,6 +131,7 @@ socket_t *global_socket;
&send_queue_test,
&socket_test,
&sender_test,
+ &scheduler_test,
&receiver_test,
NULL
};