summaryrefslogtreecommitdiff
path: root/selftest.cpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2015-04-20 15:12:31 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2015-04-20 15:12:31 -0700
commit60f05518aab585213fd053b1f6d0c96646e8f44d (patch)
tree62445eefff4ee00382c59ea10805c662a00317c0 /selftest.cpp
parent740121504f2e9cb00ab0a97d277afd57db936633 (diff)
downloadinfinitytier-60f05518aab585213fd053b1f6d0c96646e8f44d.tar.gz
infinitytier-60f05518aab585213fd053b1f6d0c96646e8f44d.zip
(1) now builds and works on Linux, (2) fix a threading problem causing carsh on shutdown, (3) cleanup in selftest, re-enable Phy and Http tests.
Diffstat (limited to 'selftest.cpp')
-rw-r--r--selftest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/selftest.cpp b/selftest.cpp
index 53f0654f..21e75924 100644
--- a/selftest.cpp
+++ b/selftest.cpp
@@ -833,14 +833,14 @@ int main(int argc,char **argv)
srand((unsigned int)time(0));
- //r |= testPhy();
- //r |= testHttp();
r |= testSqliteNetworkController();
r |= testCrypto();
r |= testPacket();
r |= testOther();
r |= testIdentity();
r |= testCertificate();
+ r |= testPhy();
+ r |= testHttp();
if (r)
std::cout << std::endl << "SOMETHING FAILED!" << std::endl;