diff -r 2717213c588a -r 9f66f99ee56f graphicstest/uibench/src/te_graphicsperformanceSuiteDefs.h --- a/graphicstest/uibench/src/te_graphicsperformanceSuiteDefs.h Tue Jun 22 15:21:29 2010 +0300 +++ b/graphicstest/uibench/src/te_graphicsperformanceSuiteDefs.h Fri Sep 24 16:14:28 2010 +0300 @@ -54,6 +54,17 @@ testBooleanTrueWithErrorCodeL((c), (b), (TText8*)__FILE__, __LINE__);\ } +// Redefine TEST/TESTE as TEST1/TESTE1 so that all errors are logged, not +// just the first error. +#ifdef TEST +#undef TEST +#define TEST(a) TEST1(a, ETrue) +#endif // TEST + +#ifdef TESTE +#undef TESTE +#define TESTE(a, b) TESTE1(a, b, ETrue) +#endif // TESTE #ifdef _USE_PROFILER #define __PROFILERMEMBERS RProcess iProcess; TInt iPErr; RFs iFSession; TBuf<256> iProfLog; TBuf<256> iProfLoE; CFileMan* iFileMan;