sl@0
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
////////////////////////////////////////////////////////////////////
|
sl@0
|
16 |
// egltest_t_stress_sgimage.script
|
sl@0
|
17 |
//
|
sl@0
|
18 |
// EGL stress tests accessing rsgimage objects shared across
|
sl@0
|
19 |
// processes.
|
sl@0
|
20 |
//
|
sl@0
|
21 |
////////////////////////////////////////////////////////////////////
|
sl@0
|
22 |
|
sl@0
|
23 |
//! @SYMTestSuiteName egltest_t_stress_sgimage
|
sl@0
|
24 |
PRINT Run Stress Tests
|
sl@0
|
25 |
LOAD_SUITE egltestserver
|
sl@0
|
26 |
|
sl@0
|
27 |
//! @SYMTestCaseID GRAPHICS-EGL-0427
|
sl@0
|
28 |
//! @SYMPREQ 2637
|
sl@0
|
29 |
//! @SYMCreationDate 03/11/2009
|
sl@0
|
30 |
//! @SYMTestCaseDependencies egltest_t_stress_sgimage.script
|
sl@0
|
31 |
//! @SYMTestType IT
|
sl@0
|
32 |
//! @SYMTestCaseDesc
|
sl@0
|
33 |
//! Functional test – Open the same RSgImage from multiple processes
|
sl@0
|
34 |
//!
|
sl@0
|
35 |
//! @SYMTestPurpose
|
sl@0
|
36 |
//! To determine that multiple processes can open the same RSgImage simultaneously and accurately read its contents.
|
sl@0
|
37 |
//!
|
sl@0
|
38 |
//! @SYMTestActions
|
sl@0
|
39 |
//! Environmental settings:
|
sl@0
|
40 |
//! • Image Size: w32 h32
|
sl@0
|
41 |
//! • List of simulated load: 0%, 30% 50% and 70%
|
sl@0
|
42 |
//! • List of pixel formats
|
sl@0
|
43 |
//! ESgPixelFormatARGB_8888_PRE
|
sl@0
|
44 |
//! • Client process priorities - all the same
|
sl@0
|
45 |
//!
|
sl@0
|
46 |
//! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406
|
sl@0
|
47 |
//! The Number of client processes is configurable, suggested values are in parentheses.
|
sl@0
|
48 |
//!
|
sl@0
|
49 |
//! For each simulated CPU load
|
sl@0
|
50 |
//! From the main process:
|
sl@0
|
51 |
//! Start SimLoadApp
|
sl@0
|
52 |
//! Open the RSgDriver
|
sl@0
|
53 |
//! Create an RSgImage
|
sl@0
|
54 |
//! Create a pixmap surface from the RSgImage and populate with known data content (e.g. by using vgClear to paint the surface blue)
|
sl@0
|
55 |
//!
|
sl@0
|
56 |
//! Spawn N (100) client processes and pass the RSgImage drawable ID to each one.
|
sl@0
|
57 |
//! Signal all client processes to start by use of a semaphore
|
sl@0
|
58 |
//!
|
sl@0
|
59 |
//! From each client process:
|
sl@0
|
60 |
//! Open RSgDriver
|
sl@0
|
61 |
//! Open RSgImage using the drawable ID passed from the main process
|
sl@0
|
62 |
//! Create EGLImage and then a VGImage
|
sl@0
|
63 |
//! Close the RSgImage and the EGLImage
|
sl@0
|
64 |
//! Create a pixmap surface
|
sl@0
|
65 |
//!
|
sl@0
|
66 |
//! Repeat 100 times
|
sl@0
|
67 |
//! Copy the VGImage to the pixmap surface
|
sl@0
|
68 |
//! Access the pixel data of the pixmap surface (e.g. by using vgReadPixels) and verify that it matches that populated by the main process
|
sl@0
|
69 |
//!
|
sl@0
|
70 |
//! Destroy the pixmap surface
|
sl@0
|
71 |
//! Close VGImage and RSgDriver
|
sl@0
|
72 |
//! Exit
|
sl@0
|
73 |
//!
|
sl@0
|
74 |
//! Main Process:
|
sl@0
|
75 |
//! Repeat 100 times
|
sl@0
|
76 |
//! Access the pixel data of the pixmap surface (e.g. by using vgReadPixels) and verify that it matches that populated initially
|
sl@0
|
77 |
//!
|
sl@0
|
78 |
//! Wait until all client processes exit and test the exit code
|
sl@0
|
79 |
//! Destroy the pixmap surface
|
sl@0
|
80 |
//! Close the RSgImage
|
sl@0
|
81 |
//! Kill SimLoadApp
|
sl@0
|
82 |
//! Exit
|
sl@0
|
83 |
//!
|
sl@0
|
84 |
//! @SYMTestStatus Implemented
|
sl@0
|
85 |
//! @SYMTestPriority 1
|
sl@0
|
86 |
//! @SYMTestExpectedResults
|
sl@0
|
87 |
//! All processes should run to completion and terminate with KErrNone
|
sl@0
|
88 |
|
sl@0
|
89 |
//!The suffix on the test case id denotes the level of the simulated
|
sl@0
|
90 |
//!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70%
|
sl@0
|
91 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-000
|
sl@0
|
92 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-000
|
sl@0
|
93 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-000
|
sl@0
|
94 |
|
sl@0
|
95 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-030
|
sl@0
|
96 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-030
|
sl@0
|
97 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-030
|
sl@0
|
98 |
|
sl@0
|
99 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-050
|
sl@0
|
100 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-050
|
sl@0
|
101 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-050
|
sl@0
|
102 |
|
sl@0
|
103 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-070
|
sl@0
|
104 |
RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadOnly-070
|
sl@0
|
105 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0427-070
|
sl@0
|
106 |
|
sl@0
|
107 |
|
sl@0
|
108 |
//! @SYMTestCaseID GRAPHICS-EGL-0425
|
sl@0
|
109 |
//! @SYMPREQ 2637
|
sl@0
|
110 |
//! @SYMCreationDate 03/08/2009
|
sl@0
|
111 |
//! @SYMTestCaseDependencies egltest_t_stress_sgimage.script
|
sl@0
|
112 |
//! @SYMTestType IT
|
sl@0
|
113 |
//! @SYMTestCaseDesc
|
sl@0
|
114 |
//! Stress test – Create and open 100 RSgImages in a specific format under various CPU load
|
sl@0
|
115 |
//!
|
sl@0
|
116 |
//! @SYMTestPurpose
|
sl@0
|
117 |
//! To determine that the system can cope with a large number of RSgImages being accessed at the same time
|
sl@0
|
118 |
//!
|
sl@0
|
119 |
//! @SYMTestActions
|
sl@0
|
120 |
//! Environmental settings:
|
sl@0
|
121 |
//! • Image Size: w32 h32
|
sl@0
|
122 |
//! • List of simulated load: 0%, 30% 50% and 70%
|
sl@0
|
123 |
//! • List of pixel format: ESgPixelFormatARGB_8888_PRE
|
sl@0
|
124 |
//! • Client process priorities - all the same
|
sl@0
|
125 |
//!
|
sl@0
|
126 |
//! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406
|
sl@0
|
127 |
//! The Number of client processes is configurable, suggested values are in parentheses.
|
sl@0
|
128 |
//!
|
sl@0
|
129 |
//! Main process:
|
sl@0
|
130 |
//! For each simulated CPU load
|
sl@0
|
131 |
//! In the main process
|
sl@0
|
132 |
//! Start SimLoadApp
|
sl@0
|
133 |
//!
|
sl@0
|
134 |
//! Open the RSgDriver
|
sl@0
|
135 |
//! Create N (100) RSgImages with no content
|
sl@0
|
136 |
//! For each RSgImage
|
sl@0
|
137 |
//! Create EGLImage and then VGImage
|
sl@0
|
138 |
//! Close EGLImage and RSgImage
|
sl@0
|
139 |
//! End loop
|
sl@0
|
140 |
//! Spawn N (100) client processes and pass a unique RSgImage drawable ID to each one.
|
sl@0
|
141 |
//!
|
sl@0
|
142 |
//! From each client process:
|
sl@0
|
143 |
//! Open RSgDriver
|
sl@0
|
144 |
//! Open RSgImage using the drawable ID passed from the main process
|
sl@0
|
145 |
//! Create EGLImage and then a VGImage
|
sl@0
|
146 |
//! Close the RSgImage and the EGLImage
|
sl@0
|
147 |
//! Create pixmap surface
|
sl@0
|
148 |
//!
|
sl@0
|
149 |
//! Main Process:
|
sl@0
|
150 |
//! Repeat 1000 times
|
sl@0
|
151 |
//! Update each VGImage data using vgImageSubData
|
sl@0
|
152 |
//! End loop
|
sl@0
|
153 |
//!
|
sl@0
|
154 |
//! From each client process:
|
sl@0
|
155 |
//! Repeat 100 times
|
sl@0
|
156 |
//! Draw VGImage using vgDrawImage into the pixmap surface
|
sl@0
|
157 |
//! End loop
|
sl@0
|
158 |
//! Destroy pixmap surface
|
sl@0
|
159 |
//! Close VGImage and RSgDriver
|
sl@0
|
160 |
//! Exit
|
sl@0
|
161 |
//!
|
sl@0
|
162 |
//! Main Process:
|
sl@0
|
163 |
//! Wait until all client processes exit
|
sl@0
|
164 |
//! Close all VGImages and the RSgDriver
|
sl@0
|
165 |
//! Kill SimLoadApp
|
sl@0
|
166 |
//! Exit
|
sl@0
|
167 |
//!
|
sl@0
|
168 |
//! @SYMTestStatus Implemented
|
sl@0
|
169 |
//! @SYMTestPriority 1
|
sl@0
|
170 |
//! @SYMTestExpectedResults
|
sl@0
|
171 |
//! All processes should run to completion and terminate correctly with KErrNone
|
sl@0
|
172 |
|
sl@0
|
173 |
//!The suffix on the test case id denotes the level of the simulated
|
sl@0
|
174 |
//!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70%
|
sl@0
|
175 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-000
|
sl@0
|
176 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-000
|
sl@0
|
177 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-000
|
sl@0
|
178 |
|
sl@0
|
179 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-030
|
sl@0
|
180 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-030
|
sl@0
|
181 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-030
|
sl@0
|
182 |
|
sl@0
|
183 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-050
|
sl@0
|
184 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-050
|
sl@0
|
185 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-050
|
sl@0
|
186 |
|
sl@0
|
187 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-070
|
sl@0
|
188 |
RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressVGImage-070
|
sl@0
|
189 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0425-070
|
sl@0
|
190 |
|
sl@0
|
191 |
//! @SYMTestCaseID GRAPHICS-EGL-0426
|
sl@0
|
192 |
//! @SYMPREQ 2637
|
sl@0
|
193 |
//! @SYMCreationDate 03/08/2009
|
sl@0
|
194 |
//! @SYMTestCaseDependencies egltest_t_stress_sgimage.script
|
sl@0
|
195 |
//! @SYMTestType IT
|
sl@0
|
196 |
//! @SYMTestCaseDesc
|
sl@0
|
197 |
//! Stress test – Create and open 100 RSgImages in different pixel format under various CPU loads
|
sl@0
|
198 |
//!
|
sl@0
|
199 |
//! @SYMTestPurpose
|
sl@0
|
200 |
//! To determine that the system can cope with a large number of RSgImages being accessed at the same time
|
sl@0
|
201 |
//!
|
sl@0
|
202 |
//! @SYMTestActions
|
sl@0
|
203 |
//! Environmental settings:
|
sl@0
|
204 |
//! • Image Size: w64 h64
|
sl@0
|
205 |
//! • List of simulated load: 0%, 30% 50% and 70%
|
sl@0
|
206 |
//! • List of pixel format: ARGB_8888_PRE, ARGB_8888, XRGB_8888 and RGB_565
|
sl@0
|
207 |
//! • Client process priorities - all the same
|
sl@0
|
208 |
//!
|
sl@0
|
209 |
//! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406
|
sl@0
|
210 |
//! The Number of client processes is configurable, suggested values are in parentheses.
|
sl@0
|
211 |
//!
|
sl@0
|
212 |
//! Main process:
|
sl@0
|
213 |
//! For each simulated CPU load and each pixel format
|
sl@0
|
214 |
//! In the main process
|
sl@0
|
215 |
//! Start SimLoadApp
|
sl@0
|
216 |
//!
|
sl@0
|
217 |
//! Open the RSgDriver
|
sl@0
|
218 |
//! Create N (100) RSgImages with no content
|
sl@0
|
219 |
//! For each RSgImage
|
sl@0
|
220 |
//! Create EGL pixmap surface
|
sl@0
|
221 |
//! Close RSgImage
|
sl@0
|
222 |
//! End loop
|
sl@0
|
223 |
//! Spawn N (100) client processes and pass a unique RSgImage drawable ID to each one.
|
sl@0
|
224 |
//!
|
sl@0
|
225 |
//! From each client process:
|
sl@0
|
226 |
//! Open RSgDriver
|
sl@0
|
227 |
//! Open RSgImage using the drawable ID passed from process A
|
sl@0
|
228 |
//! Create EGLImage and then a VGImage
|
sl@0
|
229 |
//! Close the RSgImage and the EGLImage
|
sl@0
|
230 |
//! Create pixmap surface
|
sl@0
|
231 |
//!
|
sl@0
|
232 |
//! Main Process:
|
sl@0
|
233 |
//! Repeat 1000 times
|
sl@0
|
234 |
//! Update each EGL pixmap surface using vgClear with different colour
|
sl@0
|
235 |
//! each time
|
sl@0
|
236 |
//! End loop
|
sl@0
|
237 |
//!
|
sl@0
|
238 |
//! From each client process:
|
sl@0
|
239 |
//! Repeat 1000 times
|
sl@0
|
240 |
//! Draw VGImage using vgDrawImage into pixmap surface
|
sl@0
|
241 |
//! End loop
|
sl@0
|
242 |
//! Destroy pixmap surface
|
sl@0
|
243 |
//! Close VGImage and RSgDriver
|
sl@0
|
244 |
//! Exit
|
sl@0
|
245 |
//!
|
sl@0
|
246 |
//! Main process:
|
sl@0
|
247 |
//! Wait until all client processes exit
|
sl@0
|
248 |
//! Close all EGL pixmap surfaces and the RSgDriver
|
sl@0
|
249 |
//! Kill SimLoadApp
|
sl@0
|
250 |
//! Exit
|
sl@0
|
251 |
//!
|
sl@0
|
252 |
//! @SYMTestStatus Implemented
|
sl@0
|
253 |
//! @SYMTestPriority 1
|
sl@0
|
254 |
//! @SYMTestExpectedResults
|
sl@0
|
255 |
//! All processes should run to completion and terminate with KErrNone
|
sl@0
|
256 |
|
sl@0
|
257 |
//!The suffix on the test case id denotes the level of the simulated
|
sl@0
|
258 |
//!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70%
|
sl@0
|
259 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-000
|
sl@0
|
260 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-000
|
sl@0
|
261 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-000
|
sl@0
|
262 |
|
sl@0
|
263 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-030
|
sl@0
|
264 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-030
|
sl@0
|
265 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-030
|
sl@0
|
266 |
|
sl@0
|
267 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-050
|
sl@0
|
268 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-050
|
sl@0
|
269 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-050
|
sl@0
|
270 |
|
sl@0
|
271 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-070
|
sl@0
|
272 |
RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressPixmapSurface-070
|
sl@0
|
273 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0426-070
|
sl@0
|
274 |
|
sl@0
|
275 |
//! @SYMTestCaseID GRAPHICS-EGL-0428
|
sl@0
|
276 |
//! @SYMPREQ 2637
|
sl@0
|
277 |
//! @SYMCreationDate 03/11/2009
|
sl@0
|
278 |
//! @SYMTestCaseDependencies egltest_t_stress_sgimage.script
|
sl@0
|
279 |
//! @SYMTestType IT
|
sl@0
|
280 |
//! @SYMTestCaseDesc
|
sl@0
|
281 |
//! Functional test – Open the same RSgImage from multiple processes
|
sl@0
|
282 |
//! Note: As data integrity cannot be guaranteed on all implementations, the pixel value checking aspects of this test can be regarded as optional.
|
sl@0
|
283 |
//!
|
sl@0
|
284 |
//! @SYMTestPurpose
|
sl@0
|
285 |
//! To determine that multiple processes can open the same RSgImage simultaneously and modify its content.
|
sl@0
|
286 |
//!
|
sl@0
|
287 |
//! @SYMTestActions
|
sl@0
|
288 |
//! Environmental settings:
|
sl@0
|
289 |
//! • Image Size: w1024 h1024
|
sl@0
|
290 |
//! • List of simulated load: 0%, 30% 50% and 70%
|
sl@0
|
291 |
//! • List of pixel formats
|
sl@0
|
292 |
//! ESgPixelFormatARGB_565
|
sl@0
|
293 |
//! • Client process priorities - all the same
|
sl@0
|
294 |
//!
|
sl@0
|
295 |
//! The creation of RSgImages and launching of processes is along the lines of the method outlined in GRAPHICS-EGL-RSGIMAGE_LITE-0406
|
sl@0
|
296 |
//! The Number of client processes is configurable, suggested values are in parentheses.
|
sl@0
|
297 |
//!
|
sl@0
|
298 |
//! For each simulated CPU load
|
sl@0
|
299 |
//! From the main process:
|
sl@0
|
300 |
//! Start SimLoadApp
|
sl@0
|
301 |
//! Open the RSgDriver
|
sl@0
|
302 |
//! Create an RSgImage
|
sl@0
|
303 |
//! Create a pixmap surface from the RSgImage and populate with known data content (e.g. by using vgClear to paint the surface blue)
|
sl@0
|
304 |
//!
|
sl@0
|
305 |
//! Spawn N (100) client processes and pass the RSgImage drawable ID to each one.
|
sl@0
|
306 |
//! Signal all client processes to start by use of a semaphore
|
sl@0
|
307 |
//!
|
sl@0
|
308 |
//! From each client process:
|
sl@0
|
309 |
//! Open RSgDriver
|
sl@0
|
310 |
//! Open RSgImage using the drawable ID passed from the main process
|
sl@0
|
311 |
//! Create EGLImage and then a VGImage
|
sl@0
|
312 |
//! Close the RSgImage and the EGLImage
|
sl@0
|
313 |
//!
|
sl@0
|
314 |
//! Loop until exit condition met
|
sl@0
|
315 |
//! Start loop:
|
sl@0
|
316 |
//! Read the data from the VGImage into a local buffer using vgGetSubImageData
|
sl@0
|
317 |
//! Read the data from the beginning of the buffer one pixel at time
|
sl@0
|
318 |
//! Test that the pixel colour is either blue or red.
|
sl@0
|
319 |
//! Locate the first blue pixel in the buffer and paint it red
|
sl@0
|
320 |
//! Copy the buffer back to the VGImage using vgSubImageData
|
sl@0
|
321 |
//! Exit conditiom - no blue pixels can be found:
|
sl@0
|
322 |
//! End loop:
|
sl@0
|
323 |
//!
|
sl@0
|
324 |
//! Close VGImage and RSgDriver
|
sl@0
|
325 |
//! Exit
|
sl@0
|
326 |
//!
|
sl@0
|
327 |
//! Main Process:
|
sl@0
|
328 |
//! Loop until exit condition met
|
sl@0
|
329 |
//! Start loop:
|
sl@0
|
330 |
//! Read the data from the pixmap surface into a local buffer using vgReadPixels
|
sl@0
|
331 |
//! Read the data from the beginning of the buffer one pixel at time
|
sl@0
|
332 |
//! Test that the pixel colour is either blue or red.
|
sl@0
|
333 |
//! Locate the first blue pixel in the surface and paint it red
|
sl@0
|
334 |
//! Copy the buffer back to the surface using vgWritePixels
|
sl@0
|
335 |
//! Exit condition - no blue pixels can be found:
|
sl@0
|
336 |
//! End loop:
|
sl@0
|
337 |
//!
|
sl@0
|
338 |
//! Wait until all client processes exit and test the exit code
|
sl@0
|
339 |
//! Destroy the pixmap surface
|
sl@0
|
340 |
//! Close the RSgImage and RSgDriver
|
sl@0
|
341 |
//! Kill SimLoadApp
|
sl@0
|
342 |
//! Exit
|
sl@0
|
343 |
//!
|
sl@0
|
344 |
//! @SYMTestStatus Implemented
|
sl@0
|
345 |
//! @SYMTestPriority 1
|
sl@0
|
346 |
//! @SYMTestExpectedResults
|
sl@0
|
347 |
//! All processes should run to completion and terminate with KErrNone
|
sl@0
|
348 |
|
sl@0
|
349 |
//!The suffix on the test case id denotes the level of the simulated
|
sl@0
|
350 |
//!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70%
|
sl@0
|
351 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-000
|
sl@0
|
352 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-000
|
sl@0
|
353 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-000
|
sl@0
|
354 |
|
sl@0
|
355 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-030
|
sl@0
|
356 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-030
|
sl@0
|
357 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-030
|
sl@0
|
358 |
|
sl@0
|
359 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-050
|
sl@0
|
360 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-050
|
sl@0
|
361 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-050
|
sl@0
|
362 |
|
sl@0
|
363 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-070
|
sl@0
|
364 |
RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteSingleImage-070
|
sl@0
|
365 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0428-070
|
sl@0
|
366 |
|
sl@0
|
367 |
//! @SYMTestCaseID GRAPHICS-EGL-0437
|
sl@0
|
368 |
//! @SYMPREQ 2637
|
sl@0
|
369 |
//! @SYMCreationDate 03/11/2009
|
sl@0
|
370 |
//! @SYMTestCaseDependencies egltest_t_stress_sgimage.script
|
sl@0
|
371 |
//! @SYMTestType IT
|
sl@0
|
372 |
//! @SYMTestCaseDesc
|
sl@0
|
373 |
//! Stress test – Access multiple RSgImages from multiple processes
|
sl@0
|
374 |
//! Note: As data integrity cannot be guaranteed on all implementations, the pixel value checking aspects of this test can be regarded as optional.
|
sl@0
|
375 |
//!
|
sl@0
|
376 |
//! @SYMTestPurpose
|
sl@0
|
377 |
//! To determine that multiple processes can open RSgImages simultaneously and modify their contents.
|
sl@0
|
378 |
//!
|
sl@0
|
379 |
//! @SYMTestActions
|
sl@0
|
380 |
//! Environmental settings:
|
sl@0
|
381 |
//! • Image Size: w1024 h1024
|
sl@0
|
382 |
//! • List of simulated load: 0%, 30% 50% and 70%
|
sl@0
|
383 |
//!
|
sl@0
|
384 |
//! • List of pixel formats
|
sl@0
|
385 |
//! ESgPixelFormatARGB_8888
|
sl@0
|
386 |
//! • Client process priorities - all the same
|
sl@0
|
387 |
//!
|
sl@0
|
388 |
//! This test case differs from GRAPHICS-EGL-0428 in that
|
sl@0
|
389 |
//! 1. The environmental settings differ
|
sl@0
|
390 |
//! 2. In GRAPHICS-EGL-0428, the main and client processes all read and write to a single RSgImage, but in this test case, the main process reads and writes to 10 RSgImages and the (100) client processes each access a single unique RSgImage each
|
sl@0
|
391 |
//!
|
sl@0
|
392 |
//! @SYMTestStatus Implemented
|
sl@0
|
393 |
//! @SYMTestPriority 1
|
sl@0
|
394 |
//! @SYMTestExpectedResults
|
sl@0
|
395 |
//! All processes should run to completion and terminate with KErrNone
|
sl@0
|
396 |
|
sl@0
|
397 |
//!The suffix on the test case id denotes the level of the simulated
|
sl@0
|
398 |
//!load on the processor 000 -> 0% 030 -> 30% 050 -> 50% 070 -> 70%
|
sl@0
|
399 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-000
|
sl@0
|
400 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-000
|
sl@0
|
401 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-000
|
sl@0
|
402 |
|
sl@0
|
403 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-030
|
sl@0
|
404 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-030
|
sl@0
|
405 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-030
|
sl@0
|
406 |
|
sl@0
|
407 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-050
|
sl@0
|
408 |
RUN_TEST_STEP 200 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-050
|
sl@0
|
409 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-050
|
sl@0
|
410 |
|
sl@0
|
411 |
START_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-070
|
sl@0
|
412 |
RUN_TEST_STEP 400 egltestserver Stress z:\egltest\egltest_stress_sgimage.ini StressReadWriteMultiImage-070
|
sl@0
|
413 |
END_TESTCASE GRAPHICS-EGL-RSGIMAGE_LITE-0437-070
|