STATUS DdmTestChaosFile::StartTest(void *context) { ChaosFile cf0(tcf_names[0]); if (cf0.IsValid()) { printf("Persistence check OK!\n"); return OK; } TestCreation(); TestClose(); TestOpen(); for (int i=0; i < 30; ++i) { if (i != 4) { printf("Closing #%d...", i); if (OK == cf[i]->Close()) printf("Sucess!\n"); else printf("Failed!\n"); } } TestReadWrite(); return OK; }
void DriIncludeDirListTest(bool silentMode) { TestCreation(silentMode); TestAdd(silentMode); TestFind(silentMode); if (!silentMode) std::cout << "DriIncludeDirList test: OK" << std::endl; }
TInt E32Main() { Test.Title(); Test.Start(_L("RReadWriteLock Testing")); TestCreation(); TestWriterPriority(); TestAlternatePriority(); TestReaderPriority(); TestTryLock(); TestUpgrade(); TestDowngrade(); TestPanics(); Test.End(); return KErrNone; }
void QHostAddressTests() { TestCreation(); TestOperators(); TestProtocol(); }