Home | History | Annotate | Download | only in ctestfw

Lines Matching refs:par

279 UBool UPerfTest::runTest(char* name, char* par ){
300 rval = runTestLoop( name, par );
315 UPerfFunction* UPerfTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
320 case 0: name = "First Test"; if (exec) FirstTest( par ); break;
321 case 1: name = "Second Test"; if (exec) SecondTest( par ); break;
326 name = ""; exec = exec; index = index; par = par;
331 UBool UPerfTest::runTestLoop( char* testname, char* par )
354 UPerfFunction* testFunction = this->runIndexedTest( index, TRUE, name, par );
505 UBool UPerfTest::callTest( UPerfTest& testToBeCalled, char* par )
509 return testToBeCalled.runTest( path, par );