|
|
|
@ -61,6 +61,7 @@
|
|
|
|
|
#include "KeyResetMessageTests.h"
|
|
|
|
|
#include "DeleteKeyTests.h"
|
|
|
|
|
#include "KeyAttachmentTests.h"
|
|
|
|
|
#include "OwnKeysRetrieveTests.h"
|
|
|
|
|
#include "TrustManipulationTests.h"
|
|
|
|
|
#include "SyncTests.h"
|
|
|
|
|
#include "AppleMailTests.h"
|
|
|
|
@ -116,13 +117,14 @@ const char* SuiteMaker::all_suites[] = {
|
|
|
|
|
"KeyResetMessageTests",
|
|
|
|
|
"DeleteKeyTests",
|
|
|
|
|
"KeyAttachmentTests",
|
|
|
|
|
"OwnKeysRetrieveTests",
|
|
|
|
|
"TrustManipulationTests",
|
|
|
|
|
"SyncTests",
|
|
|
|
|
"AppleMailTests",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// This file is generated, so magic constants are ok.
|
|
|
|
|
int SuiteMaker::num_suites = 52;
|
|
|
|
|
int SuiteMaker::num_suites = 53;
|
|
|
|
|
|
|
|
|
|
void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_home, Test::Suite** test_suite) {
|
|
|
|
|
if (strcmp(test_class_name, "MimeTests") == 0)
|
|
|
|
@ -223,6 +225,8 @@ void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_
|
|
|
|
|
*test_suite = new DeleteKeyTests(test_class_name, test_home);
|
|
|
|
|
else if (strcmp(test_class_name, "KeyAttachmentTests") == 0)
|
|
|
|
|
*test_suite = new KeyAttachmentTests(test_class_name, test_home);
|
|
|
|
|
else if (strcmp(test_class_name, "OwnKeysRetrieveTests") == 0)
|
|
|
|
|
*test_suite = new OwnKeysRetrieveTests(test_class_name, test_home);
|
|
|
|
|
else if (strcmp(test_class_name, "TrustManipulationTests") == 0)
|
|
|
|
|
*test_suite = new TrustManipulationTests(test_class_name, test_home);
|
|
|
|
|
else if (strcmp(test_class_name, "SyncTests") == 0)
|
|
|
|
|