OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 import pyauto_nacl # Must be imported before pyauto | 6 import pyauto_nacl # Must be imported before pyauto |
7 import pyauto | 7 import pyauto |
8 import nacl_utils | 8 import nacl_utils |
9 | 9 |
10 | 10 |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 def disabledTestSurfAwayGLESBookTextureWrap(self): | 95 def disabledTestSurfAwayGLESBookTextureWrap(self): |
96 self.surfAway('ppapi_gles_book.html?manifest=' | 96 self.surfAway('ppapi_gles_book.html?manifest=' |
97 'ppapi_gles_book_texture_wrap.nmf', 'PPAPI') | 97 'ppapi_gles_book_texture_wrap.nmf', 'PPAPI') |
98 | 98 |
99 def testSurfAwayEarthC(self): | 99 def testSurfAwayEarthC(self): |
100 self.surfAway('earth_c.html', 'Globe') | 100 self.surfAway('earth_c.html', 'Globe') |
101 | 101 |
102 def testSurfAwayEarthCC(self): | 102 def testSurfAwayEarthCC(self): |
103 self.surfAway('earth_cc.html', 'Globe') | 103 self.surfAway('earth_cc.html', 'Globe') |
104 | 104 |
105 def testSurfAwayProgressEvents(self): | 105 def disabledTestSurfAwayProgressEvents(self): |
106 self.surfAway('ppapi_progress_events.html', 'PPAPI') | 106 self.surfAway('ppapi_progress_events.html', 'PPAPI') |
107 | 107 |
108 def testSurfAwayPPBCore(self): | 108 def testSurfAwayPPBCore(self): |
109 self.surfAway('ppapi_ppb_core.html', 'PPAPI') | 109 self.surfAway('ppapi_ppb_core.html', 'PPAPI') |
110 | 110 |
111 def testSurfAwayPPBGraphics2D(self): | 111 def testSurfAwayPPBGraphics2D(self): |
112 self.surfAway('ppapi_ppb_graphics2d.html', 'PPAPI') | 112 self.surfAway('ppapi_ppb_graphics2d.html', 'PPAPI') |
113 | 113 |
114 def testSurfAwayPPBImageData(self): | 114 def testSurfAwayPPBImageData(self): |
115 self.surfAway('ppapi_ppb_image_data.html', 'PPAPI') | 115 self.surfAway('ppapi_ppb_image_data.html', 'PPAPI') |
116 | 116 |
117 def testSurfAwayPPBFileSystem(self): | 117 def testSurfAwayPPBFileSystem(self): |
118 self.surfAway('ppapi_ppb_file_system.html', 'PPAPI') | 118 self.surfAway('ppapi_ppb_file_system.html', 'PPAPI') |
119 | 119 |
120 def testSurfAwayPPAPITestsGraphics2D(self): | |
121 self.surfAway('test_case.html?mode=nacl&testcase=Graphics2D', | |
122 'Test Graphics2D') | |
123 | |
124 def testSurfAwayPPAPITestsImageData(self): | |
125 self.surfAway('test_case.html?mode=nacl&testcase=ImageData', | |
126 'Test ImageData') | |
127 | |
128 def testSurfAwayPPAPITestsMemory(self): | |
129 self.surfAway('test_case.html?mode=nacl&testcase=Memory', | |
130 'Test Memory') | |
131 | |
132 def testSurfAwayPPAPITestsPaintAggregator(self): | |
133 self.surfAway('test_case.html?mode=nacl&testcase=PaintAggregator', | |
134 'Test PaintAggregator') | |
135 | |
136 def testSurfAwayPPAPITestsScrollbar(self): | |
137 self.surfAway('test_case.html?mode=nacl&testcase=Scrollbar', | |
138 'Test Scrollbar') | |
139 | |
140 if __name__ == '__main__': | 120 if __name__ == '__main__': |
141 pyauto_nacl.Main() | 121 pyauto_nacl.Main() |
OLD | NEW |