summaryrefslogtreecommitdiff
path: root/selftest.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2016-08-17 14:19:29 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2016-08-17 14:19:29 -0700
commit1254dece5b885d3f396c8c44b659949070694443 (patch)
tree5cc013d65bb3262e4fd335bd2106f2ac7fa326f8 /selftest.cpp
parentb7ebf6edbfc9ade141f54e5510fed65e77db33fb (diff)
downloadinfinitytier-1254dece5b885d3f396c8c44b659949070694443.tar.gz
infinitytier-1254dece5b885d3f396c8c44b659949070694443.zip
Linux build fixes, and build controller.
Diffstat (limited to 'selftest.cpp')
-rw-r--r--selftest.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/selftest.cpp b/selftest.cpp
index ab05c9ef..aecccd21 100644
--- a/selftest.cpp
+++ b/selftest.cpp
@@ -501,19 +501,6 @@ static int testCertificate()
return -1;
}
- std::cout << "[certificate] Testing string serialization... ";
- CertificateOfMembership copyA(cA.toString());
- CertificateOfMembership copyB(cB.toString());
- if (copyA != cA) {
- std::cout << "FAIL" << std::endl;
- return -1;
- }
- if (copyB != cB) {
- std::cout << "FAIL" << std::endl;
- return -1;
- }
- std::cout << "PASS" << std::endl;
-
std::cout << "[certificate] Generating two certificates that should not agree...";
cA = CertificateOfMembership(10000,100,1,idA.address());
cB = CertificateOfMembership(10101,100,1,idB.address());