| 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 import random | 9 import random |
| 10 import time | 10 import time |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 | 137 |
| 138 def testSurfAwayAsyncPPBGraphics2D(self): | 138 def testSurfAwayAsyncPPBGraphics2D(self): |
| 139 self.surfAwayAsync('ppapi_ppb_graphics2d.html', 'PPAPI') | 139 self.surfAwayAsync('ppapi_ppb_graphics2d.html', 'PPAPI') |
| 140 | 140 |
| 141 def testSurfAwayAsyncPPBImageData(self): | 141 def testSurfAwayAsyncPPBImageData(self): |
| 142 self.surfAwayAsync('ppapi_ppb_image_data.html', 'PPAPI') | 142 self.surfAwayAsync('ppapi_ppb_image_data.html', 'PPAPI') |
| 143 | 143 |
| 144 def testSurfAwayAsyncPPBFileSystem(self): | 144 def testSurfAwayAsyncPPBFileSystem(self): |
| 145 self.surfAwayAsync('ppapi_ppb_file_system.html', 'PPAPI') | 145 self.surfAwayAsync('ppapi_ppb_file_system.html', 'PPAPI') |
| 146 | 146 |
| 147 def testSurfAwayAsyncPPAPITestsGraphics2D(self): | |
| 148 self.surfAwayAsync('test_case.html?mode=nacl&testcase=Graphics2D', | |
| 149 'Test Graphics2D') | |
| 150 | |
| 151 def testSurfAwayAsyncPPAPITestsImageData(self): | |
| 152 self.surfAwayAsync('test_case.html?mode=nacl&testcase=ImageData', | |
| 153 'Test ImageData') | |
| 154 | |
| 155 def testSurfAwayAsyncPPAPITestsMemory(self): | |
| 156 self.surfAwayAsync('test_case.html?mode=nacl&testcase=Memory', | |
| 157 'Test Memory') | |
| 158 | |
| 159 def testSurfAwayAsyncPPAPITestsPaintAggregator(self): | |
| 160 self.surfAwayAsync('test_case.html?mode=nacl&testcase=PaintAggregator', | |
| 161 'Test PaintAggregator') | |
| 162 | |
| 163 def testSurfAwayAsyncPPAPITestsScrollbar(self): | |
| 164 self.surfAwayAsync('test_case.html?mode=nacl&testcase=Scrollbar', | |
| 165 'Test Scrollbar') | |
| 166 | |
| 167 | 147 |
| 168 if __name__ == '__main__': | 148 if __name__ == '__main__': |
| 169 pyauto_nacl.Main() | 149 pyauto_nacl.Main() |
| OLD | NEW |