Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
20 #include "egltest_geterroranddisplay.h"
23 @SYMTestCaseID GRAPHICS-EGL-0507
30 Test eglGetError behavior
32 @SYMTestExpectedResults
33 Error code is set according to EGL specification
37 Check error is EGL_SUCCESS
40 Check error code is EGL_SUCCESS
42 Query string for version
43 Check return value is null and error code is EGL_NOT_INITIALIZED
46 Check error is EGL_SUCCESS
48 Query string for vendor
49 Check return value is null and error code is EGL_NOT_INITIALIZED
53 Check error is EGL_SUCCESS
56 Check return value is true
58 TVerdict CEglTest_GetError::doTestStepL()
60 SetTestStepID(_L("GRAPHICS-EGL-0507"));
61 INFO_PRINTF1(_L("CEglTest_GetError::doTestStepL"));
63 TEST(eglGetError() == EGL_SUCCESS);
65 // Create display object
67 TEST(eglGetError() == EGL_SUCCESS);
69 // Query string for version
70 const char* strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
71 TEST_EGL_ERROR(strEglVersion == NULL, EGL_NOT_INITIALIZED);
73 // Query string for vendor
74 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
75 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
77 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
80 CloseTMSGraphicsStep();
81 return TestStepResult();
85 @SYMTestCaseID GRAPHICS-EGL-0508
92 Test eglGetError behavior and to prove that error is specific to each thread
94 @SYMTestExpectedResults
95 Error code is set according to EGL specification
100 Check error is EGL_SUCCESS
103 Check error code is EGL_SUCCESS
105 Query string for version
106 Check return value is null but do not check error code
109 Wait for thread A to exit
112 Check error is EGL_SUCCESS
115 Check error code is EGL_SUCCESS
118 Check return value is true
122 Check error code is EGL_NOT_INITIALIZED
124 Query string for version
125 Check return value is null and error code is EGL_NOT_INITIALIZED
128 Check return value is true
131 TVerdict CEglTest_GetErrorMultiThread::doTestStepL()
133 SetTestStepID(_L("GRAPHICS-EGL-0508"));
134 INFO_PRINTF1(_L("CEglTest_GetErrorMultiThread::doTestStepL"));
136 TEST(eglGetError() == EGL_SUCCESS);
139 TEST(eglGetError() == EGL_SUCCESS);
141 INFO_PRINTF1(_L("Query string for version..."));
142 const char* strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
143 TEST(strEglVersion == NULL);
145 INFO_PRINTF1(_L("Launch thread A"));
146 Test_MultiThreadL(1, ETrue);
148 // Check that eglGetError is specific to each thread
149 TEST(eglGetError() == EGL_NOT_INITIALIZED);
151 INFO_PRINTF1(_L("Query string for vendor..."));
152 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
153 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
155 TEST(eglReleaseThread() == EGL_TRUE);
158 CloseTMSGraphicsStep();
159 return TestStepResult();
162 void CEglTest_GetErrorMultiThread::doThreadFunctionL(TInt aIdx)
164 INFO_PRINTF2(_L("CEglTest_GetErrorMultiThread::doThreadFunctionL, Thread %d"),aIdx);
166 TEST(eglGetError() == EGL_SUCCESS);
168 INFO_PRINTF2(_L("Create display object from thread: %d"), aIdx);
169 EGLDisplay dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY);
170 TEST_EGL_ERROR(dpy == iDisplay, EGL_SUCCESS);
172 TEST(eglReleaseThread() == EGL_TRUE);
176 @SYMTestCaseID GRAPHICS-EGL-0509
183 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from a single thread
185 @SYMTestExpectedResults
186 Return value and error code shall conform to EGL specification
193 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
196 Check return value is true, error code is EGL_SUCCESS and version is updated
198 Query string for vendor
199 Check return value is not null and error code is EGL_SUCCESS
202 Check return value is true and error code is EGL_SUCCESS
205 Check return value is true
207 TVerdict CEglTest_Display_Positive_Basic::doTestStepL()
209 SetTestStepID(_L("GRAPHICS-EGL-0509"));
210 INFO_PRINTF1(_L("CEglTest_Display_Positive_Basic::doTestStepL"));
212 // Create display object
214 TEST(eglGetError() == EGL_SUCCESS);
216 // Initialise display object
217 EGLint major = -1, minor = -1;
218 INFO_PRINTF1(_L("Calling eglInitialize..."));
219 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
220 TEST(major != -1 && minor != -1); // Version is updated
222 // Query string for vendor
223 INFO_PRINTF1(_L("Query string for vendor..."));
224 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
225 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
229 TEST(eglGetError() == EGL_SUCCESS);
232 TEST(eglReleaseThread() == EGL_TRUE);
235 CloseTMSGraphicsStep();
236 return TestStepResult();
240 @SYMTestCaseID GRAPHICS-EGL-0510
244 Test eglGetDisplay, eglInitialize and eglTerminate behaviors from a single thread
246 @SYMTestExpectedResults
247 Return value and error code shall conform to EGL specification
253 Get display other than default
254 Check return value is EGL_NO_DISPLAY and error code is EGL_SUCCESS
257 Check return value is false, error code is EGL_BAD_DISPLAY and version is not updated
260 Check return value is false and error code is EGL_BAD_DISPLAY
263 Check return value is true
265 TVerdict CEglTest_Display_Negative_InvalidDisplay::doTestStepL()
267 SetTestStepID(_L("GRAPHICS-EGL-0510"));
268 INFO_PRINTF1(_L("CEglTest_Display_Negative_InvalidDisplay::doTestStepL"));
270 // Get display other than default
271 const NativeDisplayType nonDefaultDisplay = -1;
272 iDisplay = eglGetDisplay(nonDefaultDisplay);
273 TEST_EGL_ERROR(iDisplay == EGL_NO_DISPLAY, EGL_SUCCESS);
275 // Initialise display object
276 EGLint major = -1, minor = -1;
277 INFO_PRINTF1(_L("Calling eglInitialize..."));
278 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor) == EGL_FALSE, EGL_BAD_DISPLAY);
279 TEST(major == -1 && minor == -1); // Version is Not updated
282 TEST_EGL_ERROR(eglTerminate(iDisplay) == EGL_FALSE, EGL_BAD_DISPLAY);
285 TEST(eglReleaseThread() == EGL_TRUE);
288 CloseTMSGraphicsStep();
289 return TestStepResult();
293 @SYMTestCaseID GRAPHICS-EGL-0511
297 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from a single thread
299 @SYMTestExpectedResults
300 Return value and error code shall conform to EGL specification
303 Un-initialised display usage test
307 Check return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
309 Query string for vendor
310 Check return value is null and error code is EGL_NOT_INITIALIZED
313 Check return value is true and error code is EGL_SUCCESS
316 Check return value is true
318 TVerdict CEglTest_Display_Negative_NotInitializedDisplay::doTestStepL()
320 SetTestStepID(_L("GRAPHICS-EGL-0511"));
321 INFO_PRINTF1(_L("CEglTest_Display_Negative_NotInitializedDisplay::doTestStepL"));
323 // Create display object
325 TEST(eglGetError() == EGL_SUCCESS);
327 // Query string for vendor
328 INFO_PRINTF1(_L("Query string for vendor"));
329 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
330 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
334 TEST(eglGetError() == EGL_SUCCESS);
337 TEST(eglReleaseThread() == EGL_TRUE);
340 CloseTMSGraphicsStep();
341 return TestStepResult();
345 @SYMTestCaseID GRAPHICS-EGL-0512
349 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from a single thread
351 @SYMTestExpectedResults
352 Return value and error code shall conform to EGL specification
355 Reinitialise display test
359 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
362 Check return value is true, error code is EGL_SUCCESS and version is updated
365 Check return value is true and error code is EGL_SUCCESS
367 Query string for version
368 Check return value is null and error code is EGL_NOT_INITIALIZED
371 Check return value is true, error code is EGL_SUCCESS and version is updated
373 Query string for version
374 Check return value is not null and error code is EGL_SUCCESS
377 Check return value is true and error code is EGL_SUCCESS
380 Check return value is true
382 TVerdict CEglTest_Display_Positive_ReinitializeDisplay::doTestStepL()
384 SetTestStepID(_L("GRAPHICS-EGL-0512"));
385 INFO_PRINTF1(_L("CEglTest_Display_Positive_ReinitializeDisplay::doTestStepL"));
387 // Create display object
389 TEST(eglGetError() == EGL_SUCCESS);
391 // Initialise display object
392 EGLint major = -1, minor = -1;
393 INFO_PRINTF1(_L("Calling eglInitialize..."));
394 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
395 TEST(major != -1 && minor != -1); // Version is updated
398 INFO_PRINTF1(_L("Calling eglTerminate..."));
399 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
401 // Query string for version
402 INFO_PRINTF1(_L("Query string for version..."));
403 const char* strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
404 TEST_EGL_ERROR(strEglVersion == NULL, EGL_NOT_INITIALIZED);
406 // Re-Initialise display object
409 INFO_PRINTF1(_L("Calling eglInitialize..."));
410 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
411 TEST(major != -1 && minor != -1); // Version is updated
413 // Query string for version
414 INFO_PRINTF1(_L("Query string for version..."));
415 strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
416 TEST_EGL_ERROR(strEglVersion != NULL, EGL_SUCCESS);
420 TEST(eglGetError() == EGL_SUCCESS);
423 TEST(eglReleaseThread() == EGL_TRUE);
426 CloseTMSGraphicsStep();
427 return TestStepResult();
431 @SYMTestCaseID GRAPHICS-EGL-0513
435 Test eglGetDisplay, eglInitialize and eglTerminate behavior from a single thread
437 @SYMTestExpectedResults
438 Return value and error code shall conform to EGL specification
441 Multiple initialisation test
445 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
448 Check return value is true, error code is EGL_SUCCESS and version is updated
451 Check return value is true, error code is EGL_SUCCESS and version is updated
454 Check return value is true and error code is EGL_SUCCESS
456 Query string for version
457 Check return value is null and error code is EGL_NOT_INITIALIZED
460 Check return value is true
462 TVerdict CEglTest_Display_Positive_MultipleInitialization::doTestStepL()
464 SetTestStepID(_L("GRAPHICS-EGL-0513"));
465 INFO_PRINTF1(_L("CEglTest_Display_Positive_MultipleInitialization::doTestStepL"));
467 // Create display object
469 TEST(eglGetError() == EGL_SUCCESS);
471 // Initialise display object
472 EGLint major = -1, minor = -1;
473 INFO_PRINTF1(_L("Calling eglInitialize..."));
474 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
475 TEST(major != -1 && minor != -1); // Version is updated
477 // Initialise display object
480 INFO_PRINTF1(_L("Calling eglInitialize..."));
481 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
482 TEST(major != -1 && minor != -1); // Version is updated
485 INFO_PRINTF1(_L("Calling eglTerminate..."));
486 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
488 // Query string for version
489 INFO_PRINTF1(_L("Query string for version..."));
490 const char* strEglVersion = eglQueryString(iDisplay, EGL_VERSION);
491 TEST_EGL_ERROR(strEglVersion == NULL, EGL_NOT_INITIALIZED);
494 TEST(eglReleaseThread() == EGL_TRUE);
497 CloseTMSGraphicsStep();
498 return TestStepResult();
502 @SYMTestCaseID GRAPHICS-EGL-0514
506 Test eglGetDisplay, eglInitialize and eglTerminate behavior from a single thread
508 @SYMTestExpectedResults
509 Return value and error code shall conform to EGL specification
512 Multiple termination test
516 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
519 Check return value is true, error code is EGL_SUCCESS and version is updated
521 Query string for extensions
522 Check return value is not null and error code is EGL_SUCCESS
525 Check return value is true and error code is EGL_SUCCESS
528 Check return value is true and error code is EGL_SUCCESS
530 Query string for extensions
531 Check return value is null and error code is EGL_NOT_INITIALIZED
534 Check return value is true
537 Check return value is true
539 TVerdict CEglTest_Display_Positive_MultipleTermination::doTestStepL()
541 SetTestStepID(_L("GRAPHICS-EGL-0514"));
542 INFO_PRINTF1(_L("CEglTest_Display_Positive_MultipleTermination::doTestStepL"));
544 // Create display object
546 TEST(eglGetError() == EGL_SUCCESS);
548 // Initialise display object
549 EGLint major = -1, minor = -1;
550 INFO_PRINTF1(_L("Calling eglInitialize..."));
551 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
552 TEST(major != -1 && minor != -1); // Version is updated
554 // Query string for extensions
555 INFO_PRINTF1(_L("Query string for extensions..."));
556 const char* strEglExtensions = eglQueryString(iDisplay, EGL_EXTENSIONS);
557 TEST_EGL_ERROR(strEglExtensions != NULL, EGL_SUCCESS);
560 INFO_PRINTF1(_L("Calling eglTerminate..."));
561 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
564 INFO_PRINTF1(_L("Calling eglTerminate..."));
565 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
567 // Query string for extensions
568 INFO_PRINTF1(_L("Query string for extensions..."));
569 strEglExtensions = eglQueryString(iDisplay, EGL_EXTENSIONS);
570 TEST_EGL_ERROR(strEglExtensions == NULL, EGL_NOT_INITIALIZED);
573 TEST(eglReleaseThread() == EGL_TRUE);
576 CloseTMSGraphicsStep();
577 return TestStepResult();
581 @SYMTestCaseID GRAPHICS-EGL-0515
585 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from multiple threads within a process
587 @SYMTestExpectedResults
588 Return value and error code shall conform to EGL specification
591 Basic multi threaded test
596 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
599 Check return value is true, error code is EGL_SUCCESS and version is updated
601 Query string for vendor
602 Check return value is not null and error code is EGL_SUCCESS
605 Wait for thread A to exit
608 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
611 Check return value is true, error code is EGL_SUCCESS and version is updated
613 Query string for vendor
614 Check return value is not null and error code is EGL_SUCCESS
617 Check return value is true and error code is EGL_SUCCESS
620 Check return value is true
624 Query string for vendor
625 Check return value is null and error code is EGL_NOT_INITIALIZED
628 Check return value is true and error code is EGL_SUCCESS
631 Check return value is true
634 TVerdict CEglTest_Display_Positive_Multithread_Basic::doTestStepL()
636 SetTestStepID(_L("GRAPHICS-EGL-0515"));
637 INFO_PRINTF1(_L("CEglTest_Display_Positive_Multithread_Basic::doTestStepL"));
639 // Create display object
641 TEST(eglGetError() == EGL_SUCCESS);
643 // Initialise display object
644 EGLint major = -1, minor = -1;
645 INFO_PRINTF1(_L("Calling eglInitialize..."));
646 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
647 TEST(major != -1 && minor != -1);
649 // Query string for vendor
650 INFO_PRINTF1(_L("Query string for vendor..."));
651 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
652 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
654 INFO_PRINTF1(_L("Launch extra thread..."));
655 Test_MultiThreadL(1, ETrue);
657 // Query string for vendor
658 INFO_PRINTF1(_L("Query string for vendor..."));
659 strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
660 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
664 TEST(eglGetError() == EGL_SUCCESS);
667 TEST(eglReleaseThread() == EGL_TRUE);
670 CloseTMSGraphicsStep();
671 return TestStepResult();
674 void CEglTest_Display_Positive_Multithread_Basic::doThreadFunctionL(TInt aIdx)
676 INFO_PRINTF2(_L("CEglTest_Display_Positive_Multithread_Basic::doThreadFunctionL, Thread %d"),aIdx);
678 INFO_PRINTF2(_L("Create display object from thread: %d"), aIdx);
680 TEST(eglGetError() == EGL_SUCCESS);
682 // Initialise display object
683 EGLint major = -1, minor = -1;
684 INFO_PRINTF1(_L("Calling eglInitialize..."));
685 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
686 TEST(major != -1 && minor != -1); // Version is updated
688 // Query string for vendor
689 INFO_PRINTF1(_L("Query string for vendor..."));
690 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
691 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
694 INFO_PRINTF1(_L("Calling eglTerminate..."));
695 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
697 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
701 @SYMTestCaseID GRAPHICS-EGL-0516
705 Test eglGetDisplay, eglInitialize and eglTerminate behavior from multiple threads within a process
707 @SYMTestExpectedResults
708 Return value and error code shall conform to EGL specification
711 Initialise and terminate display from one thread only
715 Launch thread A and B
716 Wait for both thread A and B to exit
720 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
723 Check return value is true, error code is EGL_SUCCESS and version is 1.4
728 Query string for vendor
729 Check return value is not null and error code is EGL_SUCCESS
735 Check return value is true and error code is EGL_SUCCESS
740 Query string for vendor
741 Check return value is null and error code is EGL_NOT_INITIALIZED
744 Check return value is true
750 TVerdict CEglTest_Display_Positive_Multithread_InitTerminateInOneTread::doTestStepL()
752 SetTestStepID(_L("GRAPHICS-EGL-0516"));
753 INFO_PRINTF1(_L("CEglTest_Display_Positive_Multithread_InitTerminateInOneTread::doTestStepL"));
755 INFO_PRINTF1(_L("Launch two threads"));
756 Test_MultiThreadL(2, ETrue);
759 CloseTMSGraphicsStep();
760 return TestStepResult();
763 void CEglTest_Display_Positive_Multithread_InitTerminateInOneTread::doThreadFunctionL(TInt aIdx)
765 INFO_PRINTF2(_L("CEglTest_Display_Positive_Multithread_InitTerminateInOneTread::doThreadFunctionL, Thread %d"),aIdx);
769 INFO_PRINTF2(_L("Create display object from thread: %d"), aIdx);
771 TEST(eglGetError() == EGL_SUCCESS);
773 // Initialise display object
774 EGLint major = -1, minor = -1;
775 INFO_PRINTF2(_L("Calling eglInitialize from thread %d"),aIdx);
776 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
777 TEST(major != -1 && minor != -1); // Version is updated
782 // Query string for vendor
783 INFO_PRINTF2(_L("Query string for vendor from thread %d"), aIdx);
784 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
785 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
791 INFO_PRINTF2(_L("Calling eglTerminate... from thread: %d"), aIdx);
792 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
797 // Query string for vendor
798 INFO_PRINTF2(_L("Query string for vendor from thread %d"), aIdx);
799 strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
800 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
802 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
806 @SYMTestCaseID GRAPHICS-EGL-0517
810 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from multiple threads within a process
812 @SYMTestExpectedResults
813 Return value and error code shall conform to EGL specification
816 Initialise display from one thread and terminate from another thread
820 Launch thread A and B
821 Wait for both thread A and B to exit
825 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
828 Check return value is true, error code is EGL_SUCCESS and version is 1.4
833 Query string for vendor
834 Check return value is not null and error code is EGL_SUCCESS
840 Check return value is true and error code is EGL_SUCCESS
845 Query string for vendor
846 Check return value is null and error code is EGL_NOT_INITIALIZED
849 Check return value is true
855 TVerdict CEglTest_Display_Positive_Multithread_InitTerminateFromDifferentThread::doTestStepL()
857 SetTestStepID(_L("GRAPHICS-EGL-0517"));
858 INFO_PRINTF1(_L("CEglTest_Display_Positive_Multithread_InitTerminateFromDifferentThread::doTestStepL"));
860 INFO_PRINTF1(_L("Launch two threads"));
861 Test_MultiThreadL(2, ETrue);
864 CloseTMSGraphicsStep();
865 return TestStepResult();
868 void CEglTest_Display_Positive_Multithread_InitTerminateFromDifferentThread::doThreadFunctionL(TInt aIdx)
870 INFO_PRINTF2(_L("CEglTest_Display_Positive_Multithread_InitTerminateFromDifferentThread::doThreadFunctionL, Thread %d"),aIdx);
874 INFO_PRINTF2(_L("Create display object from thread: %d"), aIdx);
876 TEST(eglGetError() == EGL_SUCCESS);
878 // Initialise display object
879 EGLint major = -1, minor = -1;
880 INFO_PRINTF2(_L("Calling eglInitialize from thread %d"),aIdx);
881 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
882 TEST(major != -1 && minor != -1);
887 // Query string for vendor
888 INFO_PRINTF2(_L("Query string for vendor from thread %d"), aIdx);
889 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
890 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
896 INFO_PRINTF2(_L("Calling eglTerminate... from thread: %d"), aIdx);
897 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
902 // Query string for vendor
903 INFO_PRINTF2(_L("Query string for vendor from thread %d"), aIdx);
904 strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
905 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
907 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
911 @SYMTestCaseID GRAPHICS-EGL-0518
915 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from multiple threads within a process
917 @SYMTestExpectedResults
918 Return value and error code shall conform to EGL specification
921 Test large number of threads
926 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
929 Wait for all threads to exit
931 From each spawned thread
933 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
936 Check return value is true, error code is EGL_SUCCESS and version is updated
938 Query string for vendor
939 Check return value is not null and error code is EGL_SUCCESS
942 Check return value is true
947 Check return value is true and error code is EGL_SUCCESS
949 Query string for vendor
950 Check return value is null and error code is EGL_NOT_INITIALIZED
953 Check return value is true
956 TVerdict CEglTest_Display_Positive_Multithread_Stress::doTestStepL()
958 SetTestStepID(_L("GRAPHICS-EGL-0518"));
959 INFO_PRINTF1(_L("CEglTest_Display_Positive_Multithread_Stress::doTestStepL"));
961 INFO_PRINTF1(_L("Create display object from main thread"));
963 TEST(eglGetError() == EGL_SUCCESS);
965 // launch 100 threads.
966 Test_MultiThreadL(100, ETrue);
968 INFO_PRINTF1(_L("Calling eglTerminate from main thread"));
969 TEST_EGL_ERROR(eglTerminate(iDisplay), EGL_SUCCESS);
971 // Query string for vendor
972 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
973 TEST_EGL_ERROR(strEglVendor == NULL, EGL_NOT_INITIALIZED);
975 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
977 CloseTMSGraphicsStep();
978 return TestStepResult();
981 void CEglTest_Display_Positive_Multithread_Stress::doThreadFunctionL(TInt aIdx)
983 INFO_PRINTF2(_L("CEglTest_Display_Positive_Multithread_Stress::doThreadFunctionL, Thread %d"),aIdx);
985 //Create display objec
987 TEST(eglGetError() == EGL_SUCCESS);
989 // Initialise display object
990 EGLint major = -1, minor = -1;
991 INFO_PRINTF1(_L("Calling eglInitialize..."));
992 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
993 TEST(major != -1 && minor != -1); // Version is updated
995 // Query string for vendor
996 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
997 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
999 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
1003 @SYMTestCaseID GRAPHICS-EGL-0519
1007 Test eglGetDisplay, eglInitialize, eglTerminate and eglQueryString behaviors from multiple processes
1009 @SYMTestExpectedResults
1010 Return value and error code shall conform to EGL specification
1013 Basic multi process test
1017 Launch process A and B
1018 Wait until process A and B are terminated
1022 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
1025 Check return value is true, error code is EGL_SUCCESS and version is updated
1027 Query string for vendor
1028 Check return value is not null and error code is EGL_SUCCESS
1034 Check the return value is not EGL_NO_DISPLAY and error code is EGL_SUCCESS
1037 Check return value is true, error code is EGL_SUCCESS and version is updated
1039 Query string for vendor
1040 Check return value is not null and error code is EGL_SUCCESS
1043 Check return value is true and error code is EGL_SUCCESS
1046 Check return value is true
1052 Query string for vendor
1053 Check return value is not null and error code is EGL_SUCCESS
1056 Check return value is true and error code is EGL_SUCCESS
1059 Check return value is true
1065 TVerdict CEglTest_Display_Positive_Multiprocess_Basic::doTestStepL()
1067 SetTestStepID(_L("GRAPHICS-EGL-0519"));
1068 INFO_PRINTF1(_L("CEglTest_Display_Positive_Multiprocess_Basic::doTestStepL"));
1070 INFO_PRINTF1(_L("Launch two processes"));
1071 Test_MultiProcessL(KEglTestStepDllName, 2, KDisplay_Positive_Multiprocess_Basic);
1073 RecordTestResultL();
1074 CloseTMSGraphicsStep();
1075 return TestStepResult();
1078 void CEglTest_Display_Positive_Multiprocess_Basic::doProcessFunctionL(TInt aIdx)
1080 INFO_PRINTF2(_L("CEglTest_Display_Positive_Multiprocess_Basic::doThreadFunctionL, Thread %d"),aIdx);
1084 INFO_PRINTF2(_L("Create display object from Process: %d"), aIdx);
1086 TEST(eglGetError() == EGL_SUCCESS);
1088 // Initialise display object
1089 EGLint major = -1, minor = -1;
1090 INFO_PRINTF2(_L("Calling eglInitialize from Process %d"),aIdx);
1091 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
1092 TEST(major != -1 && minor != -1); // Version is updated
1094 // Query string for vendor
1095 INFO_PRINTF2(_L("Query string for vendor from Process %d"),aIdx);
1096 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
1097 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
1104 INFO_PRINTF2(_L("Create display object from Process: %d"), aIdx);
1106 TEST(eglGetError() == EGL_SUCCESS);
1108 // Initialise display object
1109 EGLint major = -1, minor = -1;
1110 INFO_PRINTF2(_L("Calling eglInitialize from Process %d"),aIdx);
1111 TEST_EGL_ERROR(eglInitialize(iDisplay, &major, &minor), EGL_SUCCESS);
1112 TEST(major != -1 && minor != -1); // Version is updated
1114 // Query string for vendor
1115 INFO_PRINTF2(_L("Query string for vendor from Process %d"),aIdx);
1116 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
1117 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
1119 // Terminate display object
1120 INFO_PRINTF2(_L("Terminate display from Process %d"),aIdx);
1121 TerminateDisplayL();
1122 TEST(eglGetError() == EGL_SUCCESS);
1124 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
1131 // Query string for vendor
1132 INFO_PRINTF2(_L("Query string for vendor from Process %d"),aIdx);
1133 const char* strEglVendor = eglQueryString(iDisplay, EGL_VENDOR);
1134 TEST_EGL_ERROR(strEglVendor != NULL, EGL_SUCCESS);
1136 // Terminate display object
1137 INFO_PRINTF2(_L("Terminate display from Process %d"),aIdx);
1138 TerminateDisplayL();
1139 TEST(eglGetError() == EGL_SUCCESS);
1141 TEST_EGL_ERROR(eglReleaseThread() == EGL_TRUE, EGL_SUCCESS);
1146 @SYMTestCaseID GRAPHICS-EGL-0520
1150 Test the behaviour of eglGetDisplay in a Client heap OOM situation.
1152 @SYMTestExpectedResults
1153 No memory or handle leaks.
1156 Client heap OOM test
1159 Within a for loop that iterates through increasing memory failure at failAt:
1160 *mark client heap with __UHEAP_SETFAIL(RHeap::EDeterministic,failAt)
1161 *mark client heap with __UHEAP_MARK
1162 *call eglGetDisplay()
1164 *reset client heap with __UHEAP_RESET
1165 *If either egl function call fails and raises EGL_BAD_ALLOC, increase the failAt and restart the loop.
1166 If the procedure was successful release all the resources and check the client heap for memory leaks.
1167 No memory or handle leaks.
1169 TVerdict CEglTest_Display_OOM_ClientHeap::doTestStepL()
1171 SetTestStepID(_L("GRAPHICS-EGL-520"));
1172 INFO_PRINTF1(_L("CEglTest_OOM_ClientHeap::doTestStepL"));
1174 EGLint errorCode = EGL_BAD_ALLOC;
1175 for(TInt failAt=1; errorCode == EGL_BAD_ALLOC; ++failAt)
1177 INFO_PRINTF2(_L("Set Client heap to fail at %u allocations"), failAt);
1179 __UHEAP_SETFAIL(RHeap::EDeterministic, failAt);
1181 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
1182 errorCode = eglGetError();
1185 if(display == EGL_NO_DISPLAY)
1187 // If it's not EGL_BAD_ALLOC, loop will exit naturally.
1188 TEST(errorCode == EGL_BAD_ALLOC);
1193 // All memory failure points have been tested. So can exit the test.
1194 TEST(errorCode == EGL_SUCCESS);
1201 RecordTestResultL();
1202 CloseTMSGraphicsStep();
1203 return TestStepResult();
1207 @SYMTestCaseID GRAPHICS-EGL-0521
1211 Test the behaviour of eglInitialize in a Client heap OOM situation.
1213 @SYMTestExpectedResults
1214 No memory or handle leaks.
1217 Client heap OOM test
1220 Get the display without setting memory failure.
1222 Within a for loop that iterates through increasing memory failure at failAt:
1223 *mark client heap with __UHEAP_SETFAIL(RHeap::EDeterministic,failAt)
1224 *mark client heap with __UHEAP_MARK
1225 *call eglInitialize()
1227 *reset client heap with __UHEAP_RESET
1228 *If either egl function call fails and raises EGL_BAD_ALLOC, increase the failAt and restart the loop.
1229 If the procedure was successful release all the resources and check the client heap for memory leaks.
1230 No memory or handle leaks.
1232 TVerdict CEglTest_Display_OOM_ClientHeap_Initialize::doTestStepL()
1234 SetTestStepID(_L("GRAPHICS-EGL-521"));
1235 INFO_PRINTF1(_L("CEglTest_Display_OOM_ClientHeap_Initialize::doTestStepL"));
1237 EGLDisplay display = eglGetDisplay(EGL_DEFAULT_DISPLAY);
1238 TEST(eglGetError() == EGL_SUCCESS);
1240 TEST(display != EGL_NO_DISPLAY);
1241 if(display != EGL_NO_DISPLAY)
1243 EGLint errorCode = EGL_BAD_ALLOC;
1244 for(TInt failAt=1; errorCode == EGL_BAD_ALLOC; ++failAt)
1246 INFO_PRINTF2(_L("Set Client heap to fail at %u allocations"), failAt);
1247 __UHEAP_SETFAIL(RHeap::EDeterministic, failAt);
1249 EGLBoolean res = eglInitialize(display, NULL, NULL);
1250 errorCode = eglGetError();
1255 // All memory failure points have been tested. So can exit the test.
1256 TEST(errorCode == EGL_SUCCESS);
1257 TEST_EGL_ERROR(eglTerminate(display), EGL_SUCCESS);
1263 // If it's not EGL_BAD_ALLOC, loop will exit naturally.
1264 TEST(errorCode == EGL_BAD_ALLOC);
1272 RecordTestResultL();
1273 CloseTMSGraphicsStep();
1274 return TestStepResult();