Untitled
By: a guest | Mar 20th, 2010 | Syntax:
None | Size: 0.67 KB | Hits: 82 | Expires: Never
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Testing nvfx gallium driver
#
import os
import re
execfile(os.path.dirname(__file__) + '/quick.tests')
from framework.core import *
from framework.gleantest import *
Test.ignoreErrors.append(re.compile("debug_get_bool_option:.*"))
Test.ignoreErrors.append(re.compile("Warning:.*: Register never used"))
Test.ignoreErrors.append(re.compile("A performance reducing hack.*"))
Test.ignoreErrors.append(re.compile("You can try.*"))
Test.ignoreErrors.append(re.compile(".* errors.* warnings.*"))
Test.ignoreErrors.append(re.compile(".*new fpbo.*"))
# This takes an absurd amount of time; not sure why
del glean['blendFunc']