sl@0: // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of the License "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // e32test\nkernsa\main.cpp sl@0: // sl@0: // sl@0: sl@0: #include sl@0: sl@0: extern void TestFastSemaphore(); sl@0: extern void TestFastMutex(); sl@0: extern void TestSuspendKillMigrate(); sl@0: extern void BasicThreadTests(); sl@0: extern void TestIPI(); sl@0: extern void TestDFCs(); sl@0: extern void TestWaitFreePipe(); sl@0: extern void BenchmarkTests(); sl@0: extern void TestRWSpinLock(); sl@0: extern void TestTiedEvents(); sl@0: sl@0: void Main(TAny*) sl@0: { sl@0: BenchmarkTests(); sl@0: sl@0: TestWaitFreePipe(); sl@0: sl@0: TestFastSemaphore(); sl@0: sl@0: TestIPI(); sl@0: sl@0: BasicThreadTests(); sl@0: sl@0: TestDFCs(); sl@0: sl@0: TestTiedEvents(); sl@0: sl@0: TestRWSpinLock(); sl@0: sl@0: // InitBTraceHandler(); sl@0: // StartBTrace(); sl@0: sl@0: TestFastMutex(); sl@0: sl@0: TestSuspendKillMigrate(); sl@0: sl@0: // DumpBTraceBuffer(); sl@0: sl@0: TEST_PRINT("Tests Completed"); sl@0: sl@0: __finish(); sl@0: } sl@0: