|
|
@ -21,7 +21,6 @@ |
|
|
|
#include "I18nTests.h"
|
|
|
|
#include "IdentityListTests.h"
|
|
|
|
#include "PgpBinaryTests.h"
|
|
|
|
#include "MistrustUndoTests.h"
|
|
|
|
#include "SubkeyRatingEvalTests.h"
|
|
|
|
#include "MessageNullFromTests.h"
|
|
|
|
#include "LeastCommonDenomColorTests.h"
|
|
|
@ -29,8 +28,10 @@ |
|
|
|
#include "PgpListKeysTests.h"
|
|
|
|
#include "MessageApiTests.h"
|
|
|
|
#include "EncryptMissingPrivateKeyTests.h"
|
|
|
|
#include "NetPGPPlaygroundTests.h"
|
|
|
|
#include "CaseAndDotAddressTests.h"
|
|
|
|
#include "UserIDAliasTests.h"
|
|
|
|
#include "SignOnlyTests.h"
|
|
|
|
#include "BCCTests.h"
|
|
|
|
#include "Engine358Tests.h"
|
|
|
|
#include "BlacklistAcceptNewKeyTests.h"
|
|
|
@ -55,6 +56,7 @@ |
|
|
|
#include "CrashdumpTests.h"
|
|
|
|
#include "StringpairListTests.h"
|
|
|
|
#include "EncryptForIdentityTests.h"
|
|
|
|
#include "KeyResetMessageTests.h"
|
|
|
|
#include "TrustManipulationTests.h"
|
|
|
|
#include "AppleMailTests.h"
|
|
|
|
|
|
|
@ -69,7 +71,6 @@ const char* SuiteMaker::all_suites[] = { |
|
|
|
"I18nTests", |
|
|
|
"IdentityListTests", |
|
|
|
"PgpBinaryTests", |
|
|
|
"MistrustUndoTests", |
|
|
|
"SubkeyRatingEvalTests", |
|
|
|
"MessageNullFromTests", |
|
|
|
"LeastCommonDenomColorTests", |
|
|
@ -77,8 +78,10 @@ const char* SuiteMaker::all_suites[] = { |
|
|
|
"PgpListKeysTests", |
|
|
|
"MessageApiTests", |
|
|
|
"EncryptMissingPrivateKeyTests", |
|
|
|
"NetPGPPlaygroundTests", |
|
|
|
"CaseAndDotAddressTests", |
|
|
|
"UserIDAliasTests", |
|
|
|
"SignOnlyTests", |
|
|
|
"BCCTests", |
|
|
|
"Engine358Tests", |
|
|
|
"BlacklistAcceptNewKeyTests", |
|
|
@ -103,12 +106,13 @@ const char* SuiteMaker::all_suites[] = { |
|
|
|
"CrashdumpTests", |
|
|
|
"StringpairListTests", |
|
|
|
"EncryptForIdentityTests", |
|
|
|
"KeyResetMessageTests", |
|
|
|
"TrustManipulationTests", |
|
|
|
"AppleMailTests", |
|
|
|
}; |
|
|
|
|
|
|
|
// This file is generated, so magic constants are ok.
|
|
|
|
int SuiteMaker::num_suites = 45; |
|
|
|
int SuiteMaker::num_suites = 47; |
|
|
|
|
|
|
|
void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_home, Test::Suite** test_suite) { |
|
|
|
if (strcmp(test_class_name, "MimeTests") == 0) |
|
|
@ -129,8 +133,6 @@ void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_ |
|
|
|
*test_suite = new IdentityListTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "PgpBinaryTests") == 0) |
|
|
|
*test_suite = new PgpBinaryTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "MistrustUndoTests") == 0) |
|
|
|
*test_suite = new MistrustUndoTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "SubkeyRatingEvalTests") == 0) |
|
|
|
*test_suite = new SubkeyRatingEvalTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "MessageNullFromTests") == 0) |
|
|
@ -145,10 +147,14 @@ void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_ |
|
|
|
*test_suite = new MessageApiTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "EncryptMissingPrivateKeyTests") == 0) |
|
|
|
*test_suite = new EncryptMissingPrivateKeyTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "NetPGPPlaygroundTests") == 0) |
|
|
|
*test_suite = new NetPGPPlaygroundTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "CaseAndDotAddressTests") == 0) |
|
|
|
*test_suite = new CaseAndDotAddressTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "UserIDAliasTests") == 0) |
|
|
|
*test_suite = new UserIDAliasTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "SignOnlyTests") == 0) |
|
|
|
*test_suite = new SignOnlyTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "BCCTests") == 0) |
|
|
|
*test_suite = new BCCTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "Engine358Tests") == 0) |
|
|
@ -197,6 +203,8 @@ void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_ |
|
|
|
*test_suite = new StringpairListTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "EncryptForIdentityTests") == 0) |
|
|
|
*test_suite = new EncryptForIdentityTests(test_class_name, test_home); |
|
|
|
else if (strcmp(test_class_name, "KeyResetMessageTests") == 0) |
|
|
|
*test_suite = new KeyResetMessageTests(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, "AppleMailTests") == 0) |
|
|
|