It turns out that the backends coincidently put certain fields in, but the new jsonstreams backend does not automatically add these fields, it must be passed them. (This is the behavior of piglit when not testing).
Signed-off-by: Dylan Baker <[email protected]> --- unittests/framework/backends/shared.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/unittests/framework/backends/shared.py b/unittests/framework/backends/shared.py index eeffe76..2baa252 100644 --- a/unittests/framework/backends/shared.py +++ b/unittests/framework/backends/shared.py @@ -33,6 +33,9 @@ INITIAL_METADATA = { 'test_count': 0, 'env': {}, 'options': dict(OPTIONS), + 'clinfo': None, + 'glxinfo': None, + 'wglinfo': None, } # This is current JSON data, in raw form with only the minimum required -- 2.9.3 _______________________________________________ Piglit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/piglit
