summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolai Hähnle <nicolai.haehnle@amd.com>2017-09-21 13:45:16 +0200
committerNicolai Hähnle <nicolai.haehnle@amd.com>2017-10-18 13:47:24 +0200
commitf6e1e7e2e4328f35138d137f156efc85d08c05c0 (patch)
treeca3d97b0c5af9614b2d71876d2456ab12d5b56c1
parent902c7e165f8c87d6a9b80e6a5a6cbbb945c23cb5 (diff)
tests/deqp: remove redundant constructors
Reviewed-by: Eric Anholt <eric@anholt.net>
-rw-r--r--tests/deqp_gles3.py4
-rw-r--r--tests/deqp_vk.py3
2 files changed, 0 insertions, 7 deletions
diff --git a/tests/deqp_gles3.py b/tests/deqp_gles3.py
index 210c6e4ed..6441a9600 100644
--- a/tests/deqp_gles3.py
+++ b/tests/deqp_gles3.py
@@ -88,10 +88,6 @@ class DEQPGLES3Test(deqp.DEQPBaseTest):
[x for x in _EXTRA_ARGS if not x.startswith('--deqp-case')]
- def __init__(self, *args, **kwargs):
- super(DEQPGLES3Test, self).__init__(*args, **kwargs)
-
-
profile = deqp.make_profile( # pylint: disable=invalid-name
deqp.select_source(_DEQP_GLES3_BIN, 'dEQP-GLES3-cases.txt', _DEQP_MUSTPASS,
_EXTRA_ARGS),
diff --git a/tests/deqp_vk.py b/tests/deqp_vk.py
index 4df9e3b63..1f3d58d38 100644
--- a/tests/deqp_vk.py
+++ b/tests/deqp_vk.py
@@ -55,9 +55,6 @@ class DEQPVKTest(deqp.DEQPBaseTest):
return super(DEQPVKTest, self).extra_args + \
[x for x in _EXTRA_ARGS if not x.startswith('--deqp-case')]
- def __init__(self, *args, **kwargs):
- super(DEQPVKTest, self).__init__(*args, **kwargs)
-
def interpret_result(self):
if 'Failed to compile shader at vkGlslToSpirV' in self.result.out:
self.result.result = 'skip'