| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 import sys | 4 import sys |
| 5 from telemetry.story import story_set as story_set_module | 5 from telemetry.story import story_set as story_set_module |
| 6 from telemetry.page import page_test | 6 from telemetry.page import page_test |
| 7 | 7 |
| 8 from gpu_tests import gpu_test_base | 8 from gpu_tests import gpu_test_base |
| 9 | 9 |
| 10 class GpuProcessSharedPageState(gpu_test_base.GpuSharedPageState): | 10 class GpuProcessSharedPageState(gpu_test_base.GpuSharedPageState): |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 'GpuProcess.webgl') | 515 'GpuProcess.webgl') |
| 516 ] | 516 ] |
| 517 | 517 |
| 518 for url, name in urls_and_names_list: | 518 for url, name in urls_and_names_list: |
| 519 self.AddStory(GpuProcessTestsPage(url, name, self, expectations)) | 519 self.AddStory(GpuProcessTestsPage(url, name, self, expectations)) |
| 520 | 520 |
| 521 self.AddStory(FunctionalVideoPage(self, expectations)) | 521 self.AddStory(FunctionalVideoPage(self, expectations)) |
| 522 self.AddStory(GpuInfoCompletePage(self, expectations)) | 522 self.AddStory(GpuInfoCompletePage(self, expectations)) |
| 523 self.AddStory(NoGpuProcessPage(self, expectations)) | 523 self.AddStory(NoGpuProcessPage(self, expectations)) |
| 524 self.AddStory(SoftwareGpuProcessPage(self, expectations)) | 524 self.AddStory(SoftwareGpuProcessPage(self, expectations)) |
| 525 self.AddStory(SkipGpuProcessPage(self, expectations)) | 525 #TODO(cblume): no good way to skip this test. crbug.com/611629 |
| 526 #self.AddStory(SkipGpuProcessPage(self, expectations)) |
| 526 self.AddStory(DriverBugWorkaroundsInGpuProcessPage(self, expectations)) | 527 self.AddStory(DriverBugWorkaroundsInGpuProcessPage(self, expectations)) |
| 527 self.AddStory(IdentifyActiveGpuPage1(self, expectations)) | 528 self.AddStory(IdentifyActiveGpuPage1(self, expectations)) |
| 528 self.AddStory(IdentifyActiveGpuPage2(self, expectations)) | 529 self.AddStory(IdentifyActiveGpuPage2(self, expectations)) |
| 529 self.AddStory(IdentifyActiveGpuPage3(self, expectations)) | 530 self.AddStory(IdentifyActiveGpuPage3(self, expectations)) |
| 530 self.AddStory(IdentifyActiveGpuPage4(self, expectations)) | 531 self.AddStory(IdentifyActiveGpuPage4(self, expectations)) |
| 531 self.AddStory(ReadbackWebGLGpuProcessPage(self, expectations)) | 532 self.AddStory(ReadbackWebGLGpuProcessPage(self, expectations)) |
| 532 self.AddStory(DriverBugWorkaroundsUponGLRendererPage(self, expectations)) | 533 self.AddStory(DriverBugWorkaroundsUponGLRendererPage(self, expectations)) |
| 533 | 534 |
| 534 @property | 535 @property |
| 535 def allow_mixed_story_states(self): | 536 def allow_mixed_story_states(self): |
| 536 # Return True here in order to be able to run pages with different browser | 537 # Return True here in order to be able to run pages with different browser |
| 537 # command line arguments. | 538 # command line arguments. |
| 538 return True | 539 return True |
| OLD | NEW |