Make KeyvaDB unit tests run manually

This commit is contained in:
Vinnie Falco
2013-08-15 16:30:09 -07:00
parent a7e4087222
commit 4366aa80df

View File

@@ -708,10 +708,6 @@ public:
maxPayloadBytes = 8 * 1024
};
KeyvaDBTests () : UnitTest ("KeyvaDB", "beast")
{
}
// Retrieval callback stores the value in a Payload object for comparison
struct PayloadGetCallback : KeyvaDB::GetCallback
{
@@ -856,6 +852,10 @@ public:
testKeySize <4> (500);
testKeySize <32> (4000);
}
KeyvaDBTests () : UnitTest ("KeyvaDB", "beast", runManual)
{
}
};
static KeyvaDBTests keyvaDBTests;