os/graphics/egl/egltest/endpointtestsuite/automated/tsrc/egltest_threadedstress_local.cpp
Update contrib.
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
22 @internalComponent - Internal Symbian test code
26 #include "egltest_threadedstress.h"
30 @SYMTestCaseID GRAPHICS-EGL-0594
39 To ensure thread safety of endpoint implementation
42 Create 4 set of threads with each performing following steps:
43 1. Repeat the following steps (2-16) for 60 seconds
48 6. Draw content to surface
54 12. Compare image with expected value (??)
60 @SYMTestExpectedResults
61 The test runs to completion.
65 CEglTest_LocalTestStep_EndpointCrazyThreading::CEglTest_LocalTestStep_EndpointCrazyThreading() :
66 CLocalTestStepBase(ETestUidEndpointThreadStress)
71 CEglTest_LocalTestStep_EndpointCrazyThreading::~CEglTest_LocalTestStep_EndpointCrazyThreading()
76 void CEglTest_LocalTestStep_EndpointCrazyThreading::DoPreambleL()
78 //Register the test id.
80 RegisterTestIdsL(KTestId);
81 SetCurrentTestIds(KTestId);
85 void CEglTest_LocalTestStep_EndpointCrazyThreading::DoPostambleL()
90 TVerdict CEglTest_LocalTestStep_EndpointCrazyThreading::doTestStepL()
92 StartRemoteTestStep(TRemoteTestParams());
93 RunRemoteTestCase(0, TRemoteTestParams());
94 EndRemoteTestStep(TRemoteTestParams());
95 return TestStepResult();
100 @SYMTestCaseID GRAPHICS-EGL-0601
109 To ensure endpoint operations can succeed in low memory condition.
114 1.1. Create a heap that can expand to maximum available system memory size
115 1.2. Allocate random sizes of memory on that system heap until failure occurs, recording and counting as N.
117 1.4. De-allocate last N/4 allocations.
121 2.1. Create surface 100x100
122 2.2. Draw content to surface
124 2.4. Create endpoint.
126 2.6. Verify image content with pixel sample
128 2.8. Destroy endpoint
130 3. Repeat Step 2 1000 times. After every 200 iterations check memory usage as described in 7.3.1.
131 4. Destroy thread 2 and 1.
133 @SYMTestExpectedResults
134 The test runs to completion.
138 CEglTest_LocalTestStep_EndpointOutOfHeapMemory::CEglTest_LocalTestStep_EndpointOutOfHeapMemory() :
139 CLocalTestStepBase(ETestUidEndpointThreadStress)
144 CEglTest_LocalTestStep_EndpointOutOfHeapMemory::~CEglTest_LocalTestStep_EndpointOutOfHeapMemory()
149 void CEglTest_LocalTestStep_EndpointOutOfHeapMemory::DoPreambleL()
151 //Register the test id.
152 _LIT(KTestId, "601, 625");
153 RegisterTestIdsL(KTestId);
154 SetCurrentTestIds(KTestId);
158 void CEglTest_LocalTestStep_EndpointOutOfHeapMemory::DoPostambleL()
163 TVerdict CEglTest_LocalTestStep_EndpointOutOfHeapMemory::doTestStepL()
165 TRemoteTestParams params;
166 StartRemoteTestStep(TRemoteTestParams());
168 INFO_PRINTF1(_L("Performing out of heap memory test with 1 exercise thread..."));
169 params.iEndpointThreadStress.iNumThreads = 1;
170 TVerdict ret = RunRemoteTestCase(1, params);
173 INFO_PRINTF1(_L("...done."));
177 ERR_PRINTF1(_L("...Failed, skipping rest of test step."));
181 INFO_PRINTF1(_L("Performing out of heap memory test with 10 exercise threads..."));
182 params.iEndpointThreadStress.iNumThreads = 10;
183 ret = RunRemoteTestCase(1, params);
186 INFO_PRINTF1(_L("...done."));
190 ERR_PRINTF1(_L("...Failed, skipping rest of test step."));
194 EndRemoteTestStep(TRemoteTestParams());
195 return TestStepResult();