Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 20th, 2010 | Syntax: None | Size: 0.67 KB | Hits: 82 | Expires: Never
Copy text to clipboard
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Testing nvfx gallium driver
  5. #
  6.  
  7. import os
  8. import re
  9.  
  10. execfile(os.path.dirname(__file__) + '/quick.tests')
  11.  
  12. from framework.core import *
  13. from framework.gleantest import *
  14.  
  15. Test.ignoreErrors.append(re.compile("debug_get_bool_option:.*"))
  16. Test.ignoreErrors.append(re.compile("Warning:.*: Register never used"))
  17. Test.ignoreErrors.append(re.compile("A performance reducing hack.*"))
  18. Test.ignoreErrors.append(re.compile("You can try.*"))
  19. Test.ignoreErrors.append(re.compile(".* errors.* warnings.*"))
  20. Test.ignoreErrors.append(re.compile(".*new fpbo.*"))
  21.  
  22. # This takes an absurd amount of time; not sure why
  23. del glean['blendFunc']