OLD | NEW |
1 # | 1 # |
2 # Test Requirements: | 2 # Test Requirements: |
3 # | 3 # |
4 # Each sample is expected to have a global variable called g_testResult | 4 # Each sample is expected to have a global variable called g_testResult |
5 # That starts undefined and is set to true or false when the test is finished. | 5 # That starts undefined and is set to true or false when the test is finished. |
6 # | 6 # |
7 # Line Format: | 7 # Line Format: |
8 # | 8 # |
9 # TestType test-name options | 9 # TestType test-name options |
10 # | 10 # |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 # pdiff_threshold(number_of_pixels_allowed) : Number of pixels | 42 # pdiff_threshold(number_of_pixels_allowed) : Number of pixels |
43 # allowed to be perceptually different before the test fails. | 43 # allowed to be perceptually different before the test fails. |
44 # "pdiff_threshold" specifies the threshold for all | 44 # "pdiff_threshold" specifies the threshold for all |
45 # platforms. Platform specific versions override the | 45 # platforms. Platform specific versions override the |
46 # threshold for that platform. The default threshold is 10 pixels. | 46 # threshold for that platform. The default threshold is 10 pixels. |
47 # | 47 # |
48 # except(*firefox, *iexplore, *googlechrome) : Name of the browser | 48 # except(*firefox, *iexplore, *googlechrome) : Name of the browser |
49 # environment(s) where the test should be skipped. | 49 # environment(s) where the test should be skipped. |
50 # Default = "" | 50 # Default = "" |
51 # | 51 # |
52 # pdiff_edge_ignore_off : Turn off edge detection function in pdiff. | 52 # pdiff_edge_ignore_off : Turn off edge detection function in pdiff. |
53 # By default, it's on with a default edge detect threshold 5. | 53 # By default, it's on with a default edge detect threshold 5. |
54 # | 54 # |
55 # pdiff_edge_threshold(0 to 7) : Set edge detect threshold in pdiff. | 55 # pdiff_edge_threshold(0 to 7) : Set edge detect threshold in pdiff. |
56 # This threshold indicates the max number of neighbors the pixel can | 56 # This threshold indicates the max number of neighbors the pixel can |
57 # have to be considered as edge. 0 means only ignore scattered pixels. | 57 # have to be considered as edge. 0 means only ignore scattered pixels. |
58 # NOTE! ---------------------------------------------------------------------- | 58 # NOTE! ---------------------------------------------------------------------- |
59 # | 59 # |
60 # Read the sample guidelines | 60 # Read the sample guidelines |
61 # http://wiki.corp.google.com/twiki/bin/view/Main/ClientThreeDSampleGuidelines | 61 # http://wiki.corp.google.com/twiki/bin/view/Main/ClientThreeDSampleGuidelines |
62 # | 62 # |
63 # | 63 # |
64 small version-check-test | 64 small version-check-test |
65 small event-test | 65 small event-test |
66 small test-test | 66 small test-test |
67 small serialization-test | 67 small serialization-test |
68 small math-test | 68 small math-test |
69 small features-test | 69 small features-test |
70 small quaternion-test | 70 small quaternion-test |
71 # TODO Temporarily removing until V8 bug is fixed | 71 # TODO Temporarily removing until V8 bug is fixed |
72 small v8-test | 72 small v8-test |
73 small init-status-test | 73 small init-status-test |
74 small quaternion-test | 74 small quaternion-test |
75 small base-test | 75 small base-test |
76 small util-test | 76 small util-test |
77 small pixel-perfection screenshot pdiff_threshold(200) pdiff_threshold_ma
c(3000) except(*iexplore) | 77 small pixel-perfection screenshot pdiff_threshold(200) pdiff_threshold_ma
c(3000) except(*iexplore) |
78 medium offscreen-test | 78 medium offscreen-test |
79 medium texture-set-test screenshot | 79 medium texture-set-test screenshot |
80 medium param-array-test screenshot | 80 medium param-array-test screenshot |
| 81 small render-target-clear-test screenshot |
81 small no-rendergraph screenshot | 82 small no-rendergraph screenshot |
82 small non-cachable-params screenshot pdiff_threshold(200) | 83 small non-cachable-params screenshot pdiff_threshold(200) |
83 small type-test | 84 small type-test |
84 small render-test | 85 small render-test |
85 # TODO Test disabled, as the behaviour on Chrome does not match other | 86 # TODO Test disabled, as the behaviour on Chrome does not match other |
86 # browsers - objects are not deleted properly. | 87 # browsers - objects are not deleted properly. |
87 small ownership-test | 88 small ownership-test |
88 small effect-import-test | 89 small effect-import-test |
89 | 90 |
90 # -- tests below this line are tests for which there is a python | 91 # -- tests below this line are tests for which there is a python |
91 # function to custom run the test. As such, only the 'except' and | 92 # function to custom run the test. As such, only the 'except' and |
92 # pdiff_threshold options have any meaning | 93 # pdiff_threshold options have any meaning |
93 | 94 |
94 # These two tests rely on Selenium getting or setting a page's title and that | 95 # These two tests rely on Selenium getting or setting a page's title and that |
95 # does not currently work with Chrome. | 96 # does not currently work with Chrome. |
96 # Don't run TestStressDrawShapes on ie because selenium/ie is too slow. | 97 # Don't run TestStressDrawShapes on ie because selenium/ie is too slow. |
97 medium TestStressDrawShapes except(*googlechrome,*iexplore) | 98 medium TestStressDrawShapes except(*googlechrome,*iexplore) |
98 medium TestStressMultiWindow except(*googlechrome) | 99 medium TestStressMultiWindow except(*googlechrome) |
99 | 100 |
100 large TestStressCullingZSort pdiff_threshold(450) screenshots(8) | 101 large TestStressCullingZSort pdiff_threshold(450) screenshots(8) |
OLD | NEW |