summaryrefslogtreecommitdiff
path: root/piglit.conf.example
diff options
context:
space:
mode:
authorDylan Baker <baker.dylan.c@gmail.com>2015-04-28 14:24:17 -0700
committerDylan Baker <baker.dylan.c@gmail.com>2015-07-09 13:18:00 -0700
commit7be0c99c75589b4810160772a79d7dc088bc8f0e (patch)
treeda6e617841d0bca92b8c93f7636f5bbd51c22d67 /piglit.conf.example
parent785c0cc14753bb77e7f772ecc8b920eb47866685 (diff)
framework: Add ability to set a compression method on file backends
This creates a framework for compressing results as part of the FileBackend class. This allows for the simple addition of compression formats (gz is easily possible in python2, xz in python3), but does not actually implement any compression. zip and bz2 compression are also possible, although they'll require a little more code. This patch implements a framework, and tests for that framework. The goal is that other compression methods can easily be added to piglit simply by setting a few values in framework/backends/compression, and then everything will just work. This will allow junit results that are compressed to be read, but doesn't add support to junit for compressing results, since junit is mainly intended for consumption by jenkins, which doesn't understand compression. v2: - replace tests decorator set_compression with use of utils.set_piglit_conf. This is better because it uses a generic tools, and because set_compression is somewhat misleading of a name. v3: - backport changes from my attempt to port this to python3. There are significant differences between python2 and python3 compression handling because of the bytes/str/unicode differences between the two versions. There are also code cleanups from that work here - Make a better effort to protect the unit tests from the environment around them. The goal is that the tests control the compression options 100%, with no chance of piglit.conf or environment variables affecting the tests. - reduce code duplication in unit tests - add additional unit tests as made possible by refactoring changes v4: - add additional unit tests Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Diffstat (limited to 'piglit.conf.example')
-rw-r--r--piglit.conf.example5
1 files changed, 5 insertions, 0 deletions
diff --git a/piglit.conf.example b/piglit.conf.example
index 9606272dd..49bc8b6ed 100644
--- a/piglit.conf.example
+++ b/piglit.conf.example
@@ -110,6 +110,11 @@ run_test=./%(test_name)s
; -b/--backend
;backend=json
+; Set the default compression method to use,
+; May be one of: 'none'
+; Default: none (Note that this may change in the future)
+;compression=none
+
[expected-failures]
; Provide a list of test names that are expected to fail. These tests
; will be listed as passing in JUnit output when they fail. Any