@ -67,6 +67,7 @@
# include "OwnKeysRetrieveTests.h"
# include "TrustManipulationTests.h"
# include "SyncTests.h"
# include "RevocationTests.h"
# include "AppleMailTests.h"
@ -126,11 +127,12 @@ const char* SuiteMaker::all_suites[] = {
" OwnKeysRetrieveTests " ,
" TrustManipulationTests " ,
" SyncTests " ,
" RevocationTests " ,
" AppleMailTests " ,
} ;
// This file is generated, so magic constants are ok.
int SuiteMaker : : num_suites = 56 ;
int SuiteMaker : : num_suites = 57 ;
void SuiteMaker : : suitemaker_build ( const char * test_class_name , const char * test_home , Test : : Suite * * test_suite ) {
if ( strcmp ( test_class_name , " MimeTests " ) = = 0 )
@ -243,6 +245,8 @@ void SuiteMaker::suitemaker_build(const char* test_class_name, const char* test_
* test_suite = new TrustManipulationTests ( test_class_name , test_home ) ;
else if ( strcmp ( test_class_name , " SyncTests " ) = = 0 )
* test_suite = new SyncTests ( test_class_name , test_home ) ;
else if ( strcmp ( test_class_name , " RevocationTests " ) = = 0 )
* test_suite = new RevocationTests ( test_class_name , test_home ) ;
else if ( strcmp ( test_class_name , " AppleMailTests " ) = = 0 )
* test_suite = new AppleMailTests ( test_class_name , test_home ) ;
}