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

from __future__ import (
    absolute_import, division, print_function, unicode_literals
)

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

__all__ = ['profile']

profile = TestProfile()

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