diff options
author | Martin Willi <martin@strongswan.org> | 2006-04-19 11:40:48 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-04-19 11:40:48 +0000 |
commit | ec6582ccaa59e38cb83650c7c6b8312dc9768e87 (patch) | |
tree | 62fd80d2251aae22e40a38ada08ea9e59b602629 /Source/testing/testcases.c | |
parent | 4a93d6bafd543284b2fd77a7c29f1a526758fbca (diff) | |
download | strongswan-ec6582ccaa59e38cb83650c7c6b8312dc9768e87.tar.bz2 strongswan-ec6582ccaa59e38cb83650c7c6b8312dc9768e87.tar.xz |
- x509 certificate loading with pluto asn1 code
- x509 needs a lot more attention!
Diffstat (limited to 'Source/testing/testcases.c')
-rw-r--r-- | Source/testing/testcases.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/testing/testcases.c b/Source/testing/testcases.c index 61eba694a..0f4201b42 100644 --- a/Source/testing/testcases.c +++ b/Source/testing/testcases.c @@ -61,7 +61,6 @@ #include "rsa_test.h" #include "kernel_interface_test.h" #include "child_sa_test.h" -#include "der_decoder_test.h" #include "certificate_test.h" #include "leak_detective_test.h" @@ -130,7 +129,6 @@ test_t proposal_test = {test_proposal, "proposal_t test"}; test_t rsa_test = {test_rsa, "RSA private/public key test"}; test_t kernel_interface_test = {test_kernel_interface, "Kernel Interface"}; test_t child_sa_test = {test_child_sa, "Child SA"}; -test_t der_decoder_test = {test_der_decoder, "DER decoder"}; test_t certificate_test = {test_certificate, "X509 Certificate"}; test_t leak_detective_test = {test_leak_detective, "LEAK detective"}; @@ -255,7 +253,7 @@ int main() tester_t *tester = tester_create(test_output, FALSE); //tester->perform_tests(tester,all_tests); - tester->perform_test(tester,&leak_detective_test); + tester->perform_test(tester,&certificate_test); tester->destroy(tester); |