summaryrefslogtreecommitdiff
path: root/tests/sanity.py
blob: 93a884d5c5e06d25426b12e2152c0dce01fb2fc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#
# Minimal tests to check whether the installation is working
#

from framework import grouptools
from framework.profile import TestProfile
from framework.test import PiglitGLTest

__all__ = ['profile']

profile = TestProfile()

with profile.group_manager(
        PiglitGLTest,
        grouptools.join('spec', '!OpenGL 1.0', 'gl-1.0-readpixsanity')) as g:
    g(['gl-1.0-readpixsanity'], run_concurrent=True)