summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2020-04-16 16:31:35 -0700
committerEric Anholt <eric@anholt.net>2020-04-22 10:03:53 -0700
commit0d0fd363548635168f3bc4bf3df515f19cf2dfcc (patch)
treefe7e5c2c6c40c3d5d223e8c940070374a7889e8b /unittests
parent4b4f56bd1712df32990568c34b4297a2006341e0 (diff)
Remove the apitrace testing.
This has been superceded by Mesa's trace comparisons in pre-merge CI. Reviewed-by: Andres Gomez <agomez@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/piglit/-/merge_requests/262>
Diffstat (limited to 'unittests')
-rw-r--r--unittests/framework/test_driver_classifier.py82
1 files changed, 0 insertions, 82 deletions
diff --git a/unittests/framework/test_driver_classifier.py b/unittests/framework/test_driver_classifier.py
deleted file mode 100644
index 7c2e1032f..000000000
--- a/unittests/framework/test_driver_classifier.py
+++ /dev/null
@@ -1,82 +0,0 @@
-# coding=utf-8
-# Copyright (c) 2016 Broadcom
-# Copyright © 2019 Intel Corporation
-#
-# Permission is hereby granted, free of charge, to any person obtaining a
-# copy of this software and associated documentation files (the "Software"),
-# to deal in the Software without restriction, including without limitation
-# the rights to use, copy, modify, merge, publish, distribute, sublicense,
-# and/or sell copies of the Software, and to permit persons to whom the
-# Software is furnished to do so, subject to the following conditions:
-#
-# The above copyright notice and this permission notice (including the next
-# paragraph) shall be included in all copies or substantial portions of the
-# Software.
-#
-# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
-# IN THE SOFTWARE.
-
-"""Tests for the driver_classifier module."""
-
-try:
- import mock
-except ImportError:
- from unittest import mock
-
-import pytest
-
-from framework import driver_classifier
-
-
-class DriverClassifierTester(driver_classifier.DriverClassifier):
- """Test class for the driver classifier, taking in a fixed
-
- renderer string instead of calling glxinfo.
- """
-
- def __init__(self, renderer):
- self.override_renderer = renderer
- super(DriverClassifierTester, self).__init__()
-
-
- def collect_driver_info(self):
- self.renderer = self.override_renderer
-
-
-class TestDriverClassifier(object):
- """Tests for the DriverClassifier class."""
-
- @pytest.mark.parametrize(
- "renderer, categories",
- [
- ('Mesa DRI Intel(R) Haswell Mobile', ['i965-hsw', 'i965', 'mesa']),
- ('Mesa DRI Intel(R) HD Graphics 530 (Skylake GT2)', ['i965-skl', 'i965', 'mesa']),
- # Old VC4 string
- ('Gallium 0.4 on VC4', ['vc4', 'mesa']),
- # Modern VC4 string
- ('Gallium 0.4 on VC4 V3D 2.1', ['vc4-2.1', 'vc4', 'mesa']),
- ],
- ids=str)
- def test_renderer_categorization(self, renderer, categories):
- """Test that when given a certain renderer string, the correct
-
- categories list comes back.
- """
- assert DriverClassifierTester(renderer).categories == categories
-
- def test_collect_glxinfo(self):
- """Should set self.renderer."""
- test = driver_classifier.DriverClassifier()
- with mock.patch('framework.driver_classifier.subprocess.check_output',
- mock.Mock(return_value=b'some data\nand some more\n'
- b'OpenGL renderer string: '
- b'sentinal\nand some other '
- b'stuff')):
- test.collect_glxinfo()
- assert isinstance(test.renderer, str)
- assert test.renderer == 'sentinal'