diff -r afc583cfa176 -r da2ae96f639b crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp --- a/crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp Fri Oct 02 13:15:59 2009 +0300 +++ b/crypto/weakcryptospi/test/tcryptospi/src/te_cryptospiserver.cpp Mon Oct 12 10:17:04 2009 +0300 @@ -105,6 +105,10 @@ #include "ruleselectcommonstep.h" +#if (defined(SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT) && defined(SYMBIAN_ENABLE_SDP_ECC)) +#include "dummyecccipherloadstep.h" +#include "dummyeccsignerloadstep.h" +#endif //#include "pluginruleselectstep.h" _LIT(KServerName,"Te_CryptoSpi"); @@ -331,5 +335,12 @@ else if(aStepName == KRuleSelectCommonStep) testStep = new CRuleSelectCommonStep(); +#if (defined(SYMBIAN_ENABLE_SDP_WMDRM_SUPPORT) && defined(SYMBIAN_ENABLE_SDP_ECC)) + else if(aStepName == KDummyEccCipherLoadStep) + testStep = new CDummyEccCipherLoadStep(); + else if(aStepName == KDummyEccSignerLoadStep) + testStep = new CDummyEccSignerLoadStep(); +#endif + return testStep; }