Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: tests/pyauto_nacl/surfaway_async.py

Issue 8680014: Remove references to test_case.html and ppapi_tests_XXX.nexe which (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/pyauto_nacl/surfaway.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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()
OLDNEW
« no previous file with comments | « tests/pyauto_nacl/surfaway.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698