> +class DEQPGLES3Test(deqp.DEQPBaseTest):
> + deqp_bin = _DEQP_GLES3_EXE
> + extra_args = deqp.get_option('PIGLIT_DEQP_GLES3_EXTRA_ARGS',
> + ('deqp-gles3', 'extra_args')) or []
This should actually be:
extra_args = deqp.get_option('PIGLIT_DEQP_GLES3_EXTRA_ARGS',
('deqp-gles3', 'extra_args')).split() or []
I've fixed this locally in this file as well as in deqp_gles2.py and
deqp_gles31.py
Sorry for the noise.
>
> - test = DEQPTest(deqp_testname)
> - profile.test_list[piglit_testname] = test
> + def __init__(self, *args, **kwargs):
> + super(DEQPGLES3Test, self).__init__(*args, **kwargs)
>
>
> -profile = TestProfile()
> -add_tests()
> +profile = deqp.make_profile( # pylint: disable=invalid-name
> + deqp.iter_deqp_test_cases(filter_mustpass(
> + deqp.gen_caselist_txt(_DEQP_GLES3_EXE, 'dEQP-GLES3-cases.txt'))),
> + DEQPGLES3Test)
> --
> 2.4.1
>
signature.asc
Description: Digital signature
_______________________________________________ Piglit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/piglit
