Linux build fixes, and build controller.

This commit is contained in:
Adam Ierymenko 2016-08-17 14:19:29 -07:00
parent b7ebf6edbf
commit 1254dece5b
2 changed files with 4 additions and 17 deletions

View file

@ -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());