summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2015-07-08 13:16:10 -0700
committerEric Anholt <eric@anholt.net>2015-07-08 22:18:18 -0700
commit02bd37fd49fe50f934b803b8f4a7df0943e53339 (patch)
tree6dcbc383c9c9682409eb6e3bd774d477bbf61ba7
parentbb3ff5f6cc931f2e299f7122a7000b8d1bb5be9f (diff)
xts: Add a profile for just the rendering tests.
Many X developers work on rendering code, and don't really care about the rest of xts. This is our equivalent of GL's quick.py. v2: Style fixes from Dylan. Reviewed-by: Dave Airlie <airlied@redhat.com> (v1) Reviewed-by: Dylan Baker <baker.dylan.c@gmail.com>
-rw-r--r--tests/xts-render.py34
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/xts-render.py b/tests/xts-render.py
new file mode 100644
index 000000000..487851bc0
--- /dev/null
+++ b/tests/xts-render.py
@@ -0,0 +1,34 @@
+# Copyright (c) 2015 Broadcom
+#
+# 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.
+
+from framework import core
+from framework.profile import load_test_profile
+
+__all__ = ['profile']
+
+
+def xts_render_filter(path, test):
+ # All of Xlib9 is for rendering.
+ return 'xlib9' in path
+
+
+profile = load_test_profile("xts")
+profile.filter_tests(xts_render_filter)