Merge lp:~zyga/checkbox/remove-old-piglit into lp:checkbox

Proposed by Zygmunt Krynicki
Status: Merged
Approved by: Sylvain Pineau
Approved revision: 3639
Merged at revision: 3637
Proposed branch: lp:~zyga/checkbox/remove-old-piglit
Merge into: lp:checkbox
Diff against target: 1189 lines (+166/-373)
9 files modified
providers/plainbox-provider-checkbox/bin/piglit_test (+0/-115)
providers/plainbox-provider-checkbox/jobs/local.txt.in (+0/-7)
providers/plainbox-provider-checkbox/jobs/piglit.txt.in (+0/-81)
providers/plainbox-provider-checkbox/po/POTFILES.in (+0/-2)
providers/plainbox-provider-checkbox/po/plainbox-provider-checkbox.pot (+91/-115)
providers/plainbox-provider-piglit/manage.py (+1/-1)
providers/plainbox-provider-piglit/po/pl.po (+34/-29)
providers/plainbox-provider-piglit/po/plainbox-provider-piglit.pot (+28/-23)
providers/plainbox-provider-piglit/units/piglit.pxu (+12/-0)
To merge this branch: bzr merge lp:~zyga/checkbox/remove-old-piglit
Reviewer Review Type Date Requested Status
Sylvain Pineau (community) Approve
Review via email: mp+254755@code.launchpad.net

Description of the change

This branch removes all the traces of piglit from the checkbox provider (along with the __piglit__ local job), adds the __piglit__ job back to the piglit provider and bumps the version of piglit to 0.2

To post a comment you must log in.
Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

I had a doubt about applying a category to a local job (xlsx exporter creating the category tree using local jobs or the category units) but it's only used by checkbox touch so far and it's absolutely not a blocker .

thanks for the clanup, +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== removed file 'providers/plainbox-provider-checkbox/bin/piglit_test'
--- providers/plainbox-provider-checkbox/bin/piglit_test 2015-01-27 22:29:38 +0000
+++ providers/plainbox-provider-checkbox/bin/piglit_test 1970-01-01 00:00:00 +0000
@@ -1,115 +0,0 @@
1#!/usr/bin/python3
2
3import os
4import sys
5
6from argparse import ArgumentParser
7from subprocess import check_output, STDOUT
8
9
10class PiglitTests:
11
12 def __init__(self, tests, name):
13 self._tests = tests
14 self._name = name
15 self._results = {}
16
17 def run(self):
18 piglit_output = ''
19
20 log_path = os.path.join(os.environ.get('CHECKBOX_DATA', '.'),
21 'piglit-results', self._name)
22
23 # Need to run in verbose mode to produce output compatible with
24 # our parser.
25 run_command = ["piglit-run.py", "-v"]
26
27 for test in self._tests:
28 run_command.extend(["-t", test])
29
30 run_command.extend(['/usr/share/piglit/tests/all.tests', log_path])
31
32 piglit_env = dict(os.environ)
33 if os.path.isdir("/usr/share/piglit"):
34 piglit_env['PYTHONPATH'] = "/usr/share/piglit"
35
36 piglit_output = check_output(run_command,
37 universal_newlines=True,
38 stderr=STDOUT,
39 env=piglit_env)
40
41 # TODO: Capture stderr instead?
42 for line in piglit_output.split('\n'):
43 if ' :: ' in line:
44 self._results[line.split(' :: ')[-1].strip()] = \
45 line.split(' :: ')[-2].strip()
46
47 def get_tests_by_status(self, status=None):
48 """
49 Return a list of the tests with the given status in the last piglit run
50 """
51 if not status:
52 return self._results
53 tests = []
54 for test in self._results:
55 if self._results[test] == status:
56 tests.append(test)
57
58 return tests
59
60
61def main():
62 parser = ArgumentParser("A wrapper script for the Piglit graphics test "
63 "framework which runs the tests and parses the "
64 "results.")
65 parser.add_argument("--test", "-t",
66 required=True,
67 action='append',
68 help="The expression used to get the tests to run.")
69 parser.add_argument("--name", "-n",
70 required=True,
71 help="""A friendly name for this group of tests
72 to use in reporting.""")
73 parser.add_argument("--verbose", "-v",
74 action='store_true',
75 help='Have more verbose output')
76 args = parser.parse_args()
77
78 piglit = PiglitTests(args.test, args.name)
79 piglit.run()
80
81 if not piglit.get_tests_by_status():
82 print("WARNING: Test summary is empty, piglit output may have "
83 "changed. Exiting with error to ensure a human "
84 "looks at this.")
85 return 2
86
87 passed_tests = piglit.get_tests_by_status('pass')
88 if passed_tests:
89 print("%d tests passed" % len(passed_tests))
90
91 if args.verbose:
92 print("\n".join(["- %s" % test for test in passed_tests]))
93
94 failed_tests = piglit.get_tests_by_status('fail')
95 if failed_tests:
96 print("%d tests failed" % len(failed_tests))
97 print("\n".join(["- %s" % test for test in failed_tests]))
98
99 crashed_tests = piglit.get_tests_by_status('crash')
100 if crashed_tests:
101 print("%d tests crashed" % len(crashed_tests))
102 print("\n".join(["- %s" % test for test in crashed_tests]))
103
104 skipped_tests = piglit.get_tests_by_status('skip')
105 if skipped_tests:
106 print("%d tests were skipped" % len(skipped_tests))
107 print("\n".join(["- %s" % test for test in skipped_tests]))
108
109 if len(failed_tests) > 0 or len(crashed_tests) > 0:
110 return 1
111 else:
112 return 0
113
114if __name__ == "__main__":
115 sys.exit(main())
1160
=== modified file 'providers/plainbox-provider-checkbox/jobs/local.txt.in'
--- providers/plainbox-provider-checkbox/jobs/local.txt.in 2014-08-29 17:57:49 +0000
+++ providers/plainbox-provider-checkbox/jobs/local.txt.in 2015-03-31 13:34:54 +0000
@@ -229,13 +229,6 @@
229 shopt -s extglob229 shopt -s extglob
230 cat $PLAINBOX_PROVIDER_DATA/../jobs/peripheral.txt?(.in)230 cat $PLAINBOX_PROVIDER_DATA/../jobs/peripheral.txt?(.in)
231231
232id: __piglit__
233plugin: local
234_description: Piglit tests
235command:
236 shopt -s extglob
237 cat $PLAINBOX_PROVIDER_DATA/../jobs/piglit.txt?(.in)
238
239id: __power-management__232id: __power-management__
240plugin: local233plugin: local
241_description: Power Management tests234_description: Power Management tests
242235
=== removed file 'providers/plainbox-provider-checkbox/jobs/piglit.txt.in'
--- providers/plainbox-provider-checkbox/jobs/piglit.txt.in 2014-06-19 17:00:52 +0000
+++ providers/plainbox-provider-checkbox/jobs/piglit.txt.in 1970-01-01 00:00:00 +0000
@@ -1,81 +0,0 @@
1plugin: shell
2id: piglit/fbo
3requires:
4 package.name == 'piglit'
5command: piglit_test -t ^spec/EXT_framebuffer_object -n fbo
6estimated_duration: 28.000
7_description:
8 Runs piglit tests for checking support for framebuffer object operations, depth buffer and stencil buffer
9
10plugin: shell
11id: piglit/gl-2.1
12requires:
13 package.name == 'piglit'
14command: piglit_test -t spec/'!OpenGL 2.1'/ -n gl-2.1
15estimated_duration: 2.500
16_description:
17 Runs piglit tests for checking OpenGL 2.1 support
18
19plugin: shell
20id: piglit/vbo
21requires:
22 package.name == 'piglit'
23command: piglit_test -t spec/ARB_vertex_buffer_object/ -n vbo
24estimated_duration: 0.430
25_description:
26 Runs piglit tests for checking support for vertex buffer object operations
27
28plugin: shell
29id: piglit/glsl-fragment-shader
30requires:
31 package.name == 'piglit'
32command: piglit_test -t ^shaders/glsl-arb-fragment -n glsl-fragment-shader
33estimated_duration: 2.700
34_description:
35 Runs piglit tests for checking support for GLSL fragment shader operations
36
37plugin: shell
38id: piglit/glsl-vertex-shader
39requires:
40 package.name == 'piglit'
41command: piglit_test -t ^shaders/glsl-clamp-vertex-color -t ^shaders/glsl-max-vertex-attrib -t ^shaders/glsl-novertexdata -n glsl-vertex-shader
42estimated_duration: 3.200
43_description:
44 Runs piglit tests for checking support for GLSL vertex shader operations
45
46plugin: shell
47id: piglit/glx-tfp
48requires:
49 package.name == 'piglit'
50command: piglit_test -t glx-tfp -n glx-tfp
51estimated_duration: 2.600
52_description:
53 Runs piglit tests for checking support for texture from pixmap
54
55plugin: shell
56id: piglit/stencil_buffer
57requires:
58 package.name == 'piglit'
59command: piglit_test -t glx-visuals-stencil -t readpixels-24_8 -n stencil_buffer
60estimated_duration: 30.000
61_description:
62 Runs piglit_tests for checking support for stencil buffer operations
63
64plugin: shell
65id: piglit/summarize_results
66requires:
67 package.name == 'piglit'
68command: [ -e $PLAINBOX_SESSION_SHARE/piglit-results ] && piglit-summary-html.py $PLAINBOX_SESSION_SHARE/piglit-summary/ `find $PLAINBOX_SESSION_SHARE/piglit-results/ -name main` && echo "Successfully summarized piglit results. They are available in $PLAINBOX_SESSION_SHARE/piglit-sumary/"
69estimated_duration: 1.380
70_description:
71 Runs the piglit results summarizing tool
72
73plugin: shell
74id: piglit/tarball
75requires:
76 package.name == 'piglit'
77depends: piglit/summarize_results
78command: [ -e $PLAINBOX_SESSION_SHARE/piglit-summary ] && tar cfz $PLAINBOX_SESSION_SHARE/piglit-results.tar.gz $PLAINBOX_SESSION_SHARE/piglit-summary/
79_description:
80 Archives the piglit-summary directory into the piglit-results.tar.gz.
81
820
=== modified file 'providers/plainbox-provider-checkbox/po/POTFILES.in'
--- providers/plainbox-provider-checkbox/po/POTFILES.in 2014-06-11 15:29:20 +0000
+++ providers/plainbox-provider-checkbox/po/POTFILES.in 2015-03-31 13:34:54 +0000
@@ -33,7 +33,6 @@
33[type: gettext/rfc822deb] jobs/panel_clock_test.txt.in33[type: gettext/rfc822deb] jobs/panel_clock_test.txt.in
34[type: gettext/rfc822deb] jobs/panel_reboot.txt.in34[type: gettext/rfc822deb] jobs/panel_reboot.txt.in
35[type: gettext/rfc822deb] jobs/peripheral.txt.in35[type: gettext/rfc822deb] jobs/peripheral.txt.in
36[type: gettext/rfc822deb] jobs/piglit.txt.in
37[type: gettext/rfc822deb] jobs/power-management.txt.in36[type: gettext/rfc822deb] jobs/power-management.txt.in
38[type: gettext/rfc822deb] jobs/rendercheck.txt.in37[type: gettext/rfc822deb] jobs/rendercheck.txt.in
39[type: gettext/rfc822deb] jobs/server-services.txt.in38[type: gettext/rfc822deb] jobs/server-services.txt.in
@@ -112,7 +111,6 @@
112[type: gettext/python] bin/optical_detect111[type: gettext/python] bin/optical_detect
113[type: gettext/python] bin/optical_read_test112[type: gettext/python] bin/optical_read_test
114bin/optical_write_test113bin/optical_write_test
115[type: gettext/python] bin/piglit_test
116[type: gettext/python] bin/pm_log_check114[type: gettext/python] bin/pm_log_check
117[type: gettext/python] bin/pm_test115[type: gettext/python] bin/pm_test
118[type: gettext/python] bin/process_wait116[type: gettext/python] bin/process_wait
119117
=== modified file 'providers/plainbox-provider-checkbox/po/plainbox-provider-checkbox.pot'
--- providers/plainbox-provider-checkbox/po/plainbox-provider-checkbox.pot 2014-12-03 13:42:52 +0000
+++ providers/plainbox-provider-checkbox/po/plainbox-provider-checkbox.pot 2015-03-31 13:34:54 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2014-12-03 14:39+0100\n"11"POT-Creation-Date: 2015-03-31 15:25+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -778,7 +778,7 @@
778778
779#. summary779#. summary
780#: ../jobs/disk.txt.in:18780#: ../jobs/disk.txt.in:18
781msgid "Disk statistics for {attr_DEVNAME}"781msgid "Disk statistics for /dev/{name}"
782msgstr ""782msgstr ""
783783
784#. description784#. description
@@ -797,37 +797,35 @@
797#. description797#. description
798#: ../jobs/disk.txt.in:19798#: ../jobs/disk.txt.in:19
799msgid ""799msgid ""
800" product vendor: {attr_ID_VENDOR}\n"800" product name: {product}\n"
801" product name: {attr_ID_MODEL}\n"
802" serial number: {attr_ID_SERIAL_SHORT}\n"
803" sysfs path: {path}\n"801" sysfs path: {path}\n"
804" device node path: {attr_DEVNAME}"802" device node path: /dev/{name}"
805msgstr ""803msgstr ""
806804
807#. description805#. description
808#: ../jobs/disk.txt.in:37806#: ../jobs/disk.txt.in:35
809msgid "Check stats changes for each disk"807msgid "Check stats changes for each disk"
810msgstr ""808msgstr ""
811809
812#. description810#. description
813#: ../jobs/disk.txt.in:58811#: ../jobs/disk.txt.in:56
814msgid "SMART test"812msgid "SMART test"
815msgstr ""813msgstr ""
816814
817#. description815#. description
818#: ../jobs/disk.txt.in:78816#: ../jobs/disk.txt.in:76
819msgid "Verify system storage performs at or above baseline performance"817msgid "Verify system storage performs at or above baseline performance"
820msgstr ""818msgstr ""
821819
822#. description820#. description
823#: ../jobs/disk.txt.in:98821#: ../jobs/disk.txt.in:96
824msgid ""822msgid ""
825"Verify that storage devices, such as Fibre Channel and RAID can be detected "823"Verify that storage devices, such as Fibre Channel and RAID can be detected "
826"and perform under stress."824"and perform under stress."
827msgstr ""825msgstr ""
828826
829#. description827#. description
830#: ../jobs/disk.txt.in:120828#: ../jobs/disk.txt.in:118
831msgid ""829msgid ""
832"Some new hard drives include a feature that parks the drive heads after a "830"Some new hard drives include a feature that parks the drive heads after a "
833"short period of inactivity. This is a power-saving feature, but it can have "831"short period of inactivity. This is a power-saving feature, but it can have "
@@ -837,7 +835,7 @@
837msgstr ""835msgstr ""
838836
839#. description837#. description
840#: ../jobs/disk.txt.in:132838#: ../jobs/disk.txt.in:130
841msgid ""839msgid ""
842"PURPOSE:\n"840"PURPOSE:\n"
843" This test checks that a systems drive protection mechanism works properly.\n"841" This test checks that a systems drive protection mechanism works properly.\n"
@@ -1274,6 +1272,28 @@
1274msgid "Attaches the simple screen capture file"1272msgid "Attaches the simple screen capture file"
1275msgstr ""1273msgstr ""
12761274
1275#. summary
1276#: ../jobs/graphics.txt.in:563
1277msgid "Obtains a simple screen capture of {product}"
1278msgstr ""
1279
1280#. description
1281#: ../jobs/graphics.txt.in:567
1282msgid ""
1283"Obtains a simple screen capture of {product} using gnome-screenshot if "
1284"present"
1285msgstr ""
1286
1287#. summary
1288#: ../jobs/graphics.txt.in:575
1289msgid "Attaches a simple screen capture of {product}"
1290msgstr ""
1291
1292#. description
1293#: ../jobs/graphics.txt.in:578
1294msgid "Attaches the simple screen capture file of {product}"
1295msgstr ""
1296
1277#. description1297#. description
1278#: ../jobs/hibernate.txt.in:171298#: ../jobs/hibernate.txt.in:17
1279msgid ""1299msgid ""
@@ -1471,6 +1491,11 @@
1471msgstr ""1491msgstr ""
14721492
1473#. description1493#. description
1494#: ../jobs/info.txt.in:248
1495msgid "Attaches the debug log from the virtualization run"
1496msgstr ""
1497
1498#. description
1474#: ../jobs/input.txt.in:71499#: ../jobs/input.txt.in:7
1475msgid "Pointing device tests."1500msgid "Pointing device tests."
1476msgstr ""1501msgstr ""
@@ -2146,71 +2171,66 @@
21462171
2147#. description2172#. description
2148#: ../jobs/local.txt.in:2342173#: ../jobs/local.txt.in:234
2149msgid "Piglit tests"2174msgid "Power Management tests"
2150msgstr ""2175msgstr ""
21512176
2152#. description2177#. description
2153#: ../jobs/local.txt.in:2412178#: ../jobs/local.txt.in:241
2154msgid "Power Management tests"2179msgid "Server Services checks"
2155msgstr ""2180msgstr ""
21562181
2157#. description2182#. description
2158#: ../jobs/local.txt.in:2482183#: ../jobs/local.txt.in:248
2159msgid "Server Services checks"2184msgid "Suspend tests"
2160msgstr ""2185msgstr ""
21612186
2162#. description2187#. description
2163#: ../jobs/local.txt.in:2552188#: ../jobs/local.txt.in:255
2164msgid "Suspend tests"2189msgid "Touchpad tests"
2165msgstr ""2190msgstr ""
21662191
2167#. description2192#. description
2168#: ../jobs/local.txt.in:2622193#: ../jobs/local.txt.in:262
2169msgid "Touchpad tests"2194msgid "Touchscreen tests"
2170msgstr ""2195msgstr ""
21712196
2172#. description2197#. description
2173#: ../jobs/local.txt.in:2692198#: ../jobs/local.txt.in:269
2174msgid "Touchscreen tests"2199msgid "USB tests"
2175msgstr ""2200msgstr ""
21762201
2177#. description2202#. description
2178#: ../jobs/local.txt.in:2762203#: ../jobs/local.txt.in:276
2179msgid "USB tests"2204msgid "User Applications"
2180msgstr ""2205msgstr ""
21812206
2182#. description2207#. description
2183#: ../jobs/local.txt.in:2832208#: ../jobs/local.txt.in:283
2184msgid "User Applications"2209msgid "Virtualization tests"
2185msgstr ""2210msgstr ""
21862211
2187#. description2212#. description
2188#: ../jobs/local.txt.in:2902213#: ../jobs/local.txt.in:290
2189msgid "Virtualization tests"2214msgid "Wireless networking tests"
2190msgstr ""2215msgstr ""
21912216
2192#. description2217#. description
2193#: ../jobs/local.txt.in:2972218#: ../jobs/local.txt.in:297
2194msgid "Wireless networking tests"2219msgid "Mobile broadband tests"
2195msgstr ""2220msgstr ""
21962221
2197#. description2222#. description
2198#: ../jobs/local.txt.in:3042223#: ../jobs/local.txt.in:304
2199msgid "Mobile broadband tests"2224msgid "Stress tests"
2200msgstr ""2225msgstr ""
22012226
2202#. description2227#. description
2203#: ../jobs/local.txt.in:3112228#: ../jobs/local.txt.in:311
2204msgid "Stress tests"2229msgid "Smoke tests"
2205msgstr ""2230msgstr ""
22062231
2207#. description2232#. description
2208#: ../jobs/local.txt.in:3182233#: ../jobs/local.txt.in:318
2209msgid "Smoke tests"
2210msgstr ""
2211
2212#. description
2213#: ../jobs/local.txt.in:325
2214msgid "Sniff Sniffers"2234msgid "Sniff Sniffers"
2215msgstr ""2235msgstr ""
22162236
@@ -3178,56 +3198,6 @@
3178msgstr ""3198msgstr ""
31793199
3180#. description3200#. description
3181#: ../jobs/piglit.txt.in:7
3182msgid ""
3183"Runs piglit tests for checking support for framebuffer object operations, "
3184"depth buffer and stencil buffer"
3185msgstr ""
3186
3187#. description
3188#: ../jobs/piglit.txt.in:16
3189msgid "Runs piglit tests for checking OpenGL 2.1 support"
3190msgstr ""
3191
3192#. description
3193#: ../jobs/piglit.txt.in:25
3194msgid ""
3195"Runs piglit tests for checking support for vertex buffer object operations"
3196msgstr ""
3197
3198#. description
3199#: ../jobs/piglit.txt.in:34
3200msgid ""
3201"Runs piglit tests for checking support for GLSL fragment shader operations"
3202msgstr ""
3203
3204#. description
3205#: ../jobs/piglit.txt.in:43
3206msgid ""
3207"Runs piglit tests for checking support for GLSL vertex shader operations"
3208msgstr ""
3209
3210#. description
3211#: ../jobs/piglit.txt.in:52
3212msgid "Runs piglit tests for checking support for texture from pixmap"
3213msgstr ""
3214
3215#. description
3216#: ../jobs/piglit.txt.in:61
3217msgid "Runs piglit_tests for checking support for stencil buffer operations"
3218msgstr ""
3219
3220#. description
3221#: ../jobs/piglit.txt.in:70
3222msgid "Runs the piglit results summarizing tool"
3223msgstr ""
3224
3225#. description
3226#: ../jobs/piglit.txt.in:79
3227msgid "Archives the piglit-summary directory into the piglit-results.tar.gz."
3228msgstr ""
3229
3230#. description
3231#: ../jobs/power-management.txt.in:43201#: ../jobs/power-management.txt.in:4
3232msgid ""3202msgid ""
3233"PURPOSE:\n"3203"PURPOSE:\n"
@@ -3251,7 +3221,7 @@
3251msgstr ""3221msgstr ""
32523222
3253#. description3223#. description
3254#: ../jobs/power-management.txt.in:433224#: ../jobs/power-management.txt.in:44
3255msgid ""3225msgid ""
3256"PURPOSE:\n"3226"PURPOSE:\n"
3257" This test will check the system's ability to power-off and boot.\n"3227" This test will check the system's ability to power-off and boot.\n"
@@ -3269,14 +3239,14 @@
3269msgstr ""3239msgstr ""
32703240
3271#. description3241#. description
3272#: ../jobs/power-management.txt.in:603242#: ../jobs/power-management.txt.in:61
3273msgid ""3243msgid ""
3274"This will attach any logs from the power-management/poweroff test to the "3244"This will attach any logs from the power-management/poweroff test to the "
3275"results."3245"results."
3276msgstr ""3246msgstr ""
32773247
3278#. description3248#. description
3279#: ../jobs/power-management.txt.in:723249#: ../jobs/power-management.txt.in:74
3280msgid ""3250msgid ""
3281"PURPOSE:\n"3251"PURPOSE:\n"
3282" This test will check the system's ability to reboot cleanly.\n"3252" This test will check the system's ability to reboot cleanly.\n"
@@ -3292,14 +3262,14 @@
3292msgstr ""3262msgstr ""
32933263
3294#. description3264#. description
3295#: ../jobs/power-management.txt.in:873265#: ../jobs/power-management.txt.in:89
3296msgid ""3266msgid ""
3297"This will attach any logs from the power-management/reboot test to the "3267"This will attach any logs from the power-management/reboot test to the "
3298"results."3268"results."
3299msgstr ""3269msgstr ""
33003270
3301#. description3271#. description
3302#: ../jobs/power-management.txt.in:943272#: ../jobs/power-management.txt.in:96
3303msgid ""3273msgid ""
3304"PURPOSE:\n"3274"PURPOSE:\n"
3305" This test will check your lid sensors.\n"3275" This test will check your lid sensors.\n"
@@ -3310,7 +3280,7 @@
3310msgstr ""3280msgstr ""
33113281
3312#. description3282#. description
3313#: ../jobs/power-management.txt.in:1123283#: ../jobs/power-management.txt.in:114
3314msgid ""3284msgid ""
3315"PURPOSE:\n"3285"PURPOSE:\n"
3316" This test will check your lid sensors\n"3286" This test will check your lid sensors\n"
@@ -3322,7 +3292,7 @@
3322msgstr ""3292msgstr ""
33233293
3324#. description3294#. description
3325#: ../jobs/power-management.txt.in:1313295#: ../jobs/power-management.txt.in:133
3326msgid ""3296msgid ""
3327"PURPOSE:\n"3297"PURPOSE:\n"
3328" This test will check your lid sensors.\n"3298" This test will check your lid sensors.\n"
@@ -3336,20 +3306,20 @@
3336msgstr ""3306msgstr ""
33373307
3338#. description3308#. description
3339#: ../jobs/power-management.txt.in:1513309#: ../jobs/power-management.txt.in:153
3340msgid ""3310msgid ""
3341"Verify that the Real-time clock (RTC) device functions properly, if present"3311"Verify that the Real-time clock (RTC) device functions properly, if present"
3342msgstr ""3312msgstr ""
33433313
3344#. description3314#. description
3345#: ../jobs/power-management.txt.in:1583315#: ../jobs/power-management.txt.in:160
3346msgid ""3316msgid ""
3347"Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "3317"Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
3348"regression check)"3318"regression check)"
3349msgstr ""3319msgstr ""
33503320
3351#. description3321#. description
3352#: ../jobs/power-management.txt.in:1653322#: ../jobs/power-management.txt.in:167
3353msgid ""3323msgid ""
3354"PURPOSE:\n"3324"PURPOSE:\n"
3355" This test will ensure that the AC is unplugged for the battery drain "3325" This test will ensure that the AC is unplugged for the battery drain "
@@ -3361,37 +3331,37 @@
3361msgstr ""3331msgstr ""
33623332
3363#. description3333#. description
3364#: ../jobs/power-management.txt.in:1783334#: ../jobs/power-management.txt.in:180
3365msgid "Checks the battery drain during idle. Reports time until empty"3335msgid "Checks the battery drain during idle. Reports time until empty"
3366msgstr ""3336msgstr ""
33673337
3368#. description3338#. description
3369#: ../jobs/power-management.txt.in:1783339#: ../jobs/power-management.txt.in:180
3370msgid "and capacity as well."3340msgid "and capacity as well."
3371msgstr ""3341msgstr ""
33723342
3373#. description3343#. description
3374#: ../jobs/power-management.txt.in:1893344#: ../jobs/power-management.txt.in:191
3375msgid "Checks the battery drain while watching a movie. Reports time"3345msgid "Checks the battery drain while watching a movie. Reports time"
3376msgstr ""3346msgstr ""
33773347
3378#. description3348#. description
3379#: ../jobs/power-management.txt.in:1893349#: ../jobs/power-management.txt.in:191
3380msgid "until empty and capacity as well. Requires MOVIE_VAR to be set."3350msgid "until empty and capacity as well. Requires MOVIE_VAR to be set."
3381msgstr ""3351msgstr ""
33823352
3383#. description3353#. description
3384#: ../jobs/power-management.txt.in:2023354#: ../jobs/power-management.txt.in:204
3385msgid "Checks the battery drain during suspend. Reports time until"3355msgid "Checks the battery drain during suspend. Reports time until"
3386msgstr ""3356msgstr ""
33873357
3388#. description3358#. description
3389#: ../jobs/power-management.txt.in:2023359#: ../jobs/power-management.txt.in:204
3390msgid "empty and capacity as well."3360msgid "empty and capacity as well."
3391msgstr ""3361msgstr ""
33923362
3393#. description3363#. description
3394#: ../jobs/power-management.txt.in:2113364#: ../jobs/power-management.txt.in:213
3395msgid ""3365msgid ""
3396"PURPOSE:\n"3366"PURPOSE:\n"
3397" This test will ensure that the AC is plugged back in after the battery.\n"3367" This test will ensure that the AC is plugged back in after the battery.\n"
@@ -3403,7 +3373,7 @@
3403msgstr ""3373msgstr ""
34043374
3405#. description3375#. description
3406#: ../jobs/power-management.txt.in:2253376#: ../jobs/power-management.txt.in:227
3407msgid ""3377msgid ""
3408"PURPOSE:\n"3378"PURPOSE:\n"
3409" This test will verify that your system can successfully reboot.\n"3379" This test will verify that your system can successfully reboot.\n"
@@ -3421,7 +3391,7 @@
3421msgstr ""3391msgstr ""
34223392
3423#. description3393#. description
3424#: ../jobs/power-management.txt.in:2443394#: ../jobs/power-management.txt.in:246
3425msgid ""3395msgid ""
3426"PURPOSE:\n"3396"PURPOSE:\n"
3427" This test will check your system shutdown/booting cycle\n"3397" This test will check your system shutdown/booting cycle\n"
@@ -3635,67 +3605,67 @@
3635msgstr ""3605msgstr ""
36363606
3637#. description3607#. description
3638#: ../jobs/stress.txt.in:1583608#: ../jobs/stress.txt.in:159
3639msgid "Stress reboot system (100 cycles)"3609msgid "Stress reboot system (100 cycles)"
3640msgstr ""3610msgstr ""
36413611
3642#. description3612#. description
3643#: ../jobs/stress.txt.in:1763613#: ../jobs/stress.txt.in:178
3644msgid "Stress reboot system (30 cycles)"3614msgid "Stress reboot system (30 cycles)"
3645msgstr ""3615msgstr ""
36463616
3647#. description3617#. description
3648#: ../jobs/stress.txt.in:1933618#: ../jobs/stress.txt.in:196
3649msgid "Stress poweroff system (100 cycles)"3619msgid "Stress poweroff system (100 cycles)"
3650msgstr ""3620msgstr ""
36513621
3652#. description3622#. description
3653#: ../jobs/stress.txt.in:2113623#: ../jobs/stress.txt.in:215
3654msgid "Stress poweroff system (30 cycles)"3624msgid "Stress poweroff system (30 cycles)"
3655msgstr ""3625msgstr ""
36563626
3657#. description3627#. description
3658#: ../jobs/stress.txt.in:2243628#: ../jobs/stress.txt.in:228
3659msgid "Check logs for the stress reboot (30 cycles) test case"3629msgid "Check logs for the stress reboot (30 cycles) test case"
3660msgstr ""3630msgstr ""
36613631
3662#. description3632#. description
3663#: ../jobs/stress.txt.in:2383633#: ../jobs/stress.txt.in:242
3664msgid "Check logs for the stress poweroff (30 cycles) test case"3634msgid "Check logs for the stress poweroff (30 cycles) test case"
3665msgstr ""3635msgstr ""
36663636
3667#. description3637#. description
3668#: ../jobs/stress.txt.in:2523638#: ../jobs/stress.txt.in:256
3669msgid "Check logs for the stress reboot (100 cycles) test case"3639msgid "Check logs for the stress reboot (100 cycles) test case"
3670msgstr ""3640msgstr ""
36713641
3672#. description3642#. description
3673#: ../jobs/stress.txt.in:2663643#: ../jobs/stress.txt.in:270
3674msgid "Check logs for the stress poweroff (100 cycles) test case"3644msgid "Check logs for the stress poweroff (100 cycles) test case"
3675msgstr ""3645msgstr ""
36763646
3677#. description3647#. description
3678#: ../jobs/stress.txt.in:2833648#: ../jobs/stress.txt.in:287
3679msgid "Run the graphics stress test. This test can take a few minutes."3649msgid "Run the graphics stress test. This test can take a few minutes."
3680msgstr ""3650msgstr ""
36813651
3682#. description3652#. description
3683#: ../jobs/stress.txt.in:2923653#: ../jobs/stress.txt.in:296
3684msgid "Attaches the graphics stress results to the submission."3654msgid "Attaches the graphics stress results to the submission."
3685msgstr ""3655msgstr ""
36863656
3687#. description3657#. description
3688#: ../jobs/stress.txt.in:2993658#: ../jobs/stress.txt.in:303
3689msgid "Runs a test that transfers 100 10MB files 3 times to usb."3659msgid "Runs a test that transfers 100 10MB files 3 times to usb."
3690msgstr ""3660msgstr ""
36913661
3692#. summary3662#. summary
3693#: ../jobs/stress.txt.in:3043663#: ../jobs/stress.txt.in:308
3694msgid "Stress test for SDHC card"3664msgid "Stress test for SDHC card"
3695msgstr ""3665msgstr ""
36963666
3697#. description3667#. description
3698#: ../jobs/stress.txt.in:3073668#: ../jobs/stress.txt.in:311
3699msgid ""3669msgid ""
3700"PURPOSE:\n"3670"PURPOSE:\n"
3701" This test will transfers 100 10MB files 3 times to a SDHC card, to\n"3671" This test will transfers 100 10MB files 3 times to a SDHC card, to\n"
@@ -3711,12 +3681,12 @@
3711msgstr ""3681msgstr ""
37123682
3713#. description3683#. description
3714#: ../jobs/stress.txt.in:3263684#: ../jobs/stress.txt.in:330
3715msgid "Ping ubuntu.com and restart network interfaces 100 times"3685msgid "Ping ubuntu.com and restart network interfaces 100 times"
3716msgstr ""3686msgstr ""
37173687
3718#. description3688#. description
3719#: ../jobs/stress.txt.in:3383689#: ../jobs/stress.txt.in:342
3720msgid ""3690msgid ""
3721"PURPOSE:\n"3691"PURPOSE:\n"
3722" To make sure that stressing the wifi hotkey does not cause applets to "3692" To make sure that stressing the wifi hotkey does not cause applets to "
@@ -5205,6 +5175,11 @@
5205msgstr ""5175msgstr ""
52065176
5207#. description5177#. description
5178#: ../jobs/touchpad.txt.in:205
5179msgid "This test will check if your touchpad was detected as a mouse."
5180msgstr ""
5181
5182#. description
5208#: ../jobs/touchscreen.txt.in:75183#: ../jobs/touchscreen.txt.in:7
5209msgid ""5184msgid ""
5210"Determine whether the screen is detected as a non-touch device automatically."5185"Determine whether the screen is detected as a non-touch device automatically."
@@ -5221,11 +5196,12 @@
5221#: ../jobs/touchscreen.txt.in:235196#: ../jobs/touchscreen.txt.in:23
5222msgid ""5197msgid ""
5223"PURPOSE:\n"5198"PURPOSE:\n"
5224" Touchscreen manual detection of multitouch.\n"5199" Touchscreen capability manual detection.\n"
5225"STEPS:\n"5200"STEPS:\n"
5226" 1. Look at the specifications for your system.\n"5201" 1. Look at the specifications for your system.\n"
5227"VERIFICATION:\n"5202"VERIFICATION:\n"
5228" Is the screen supposed to be multitouch?"5203" Your screen was detected as a non touch screen. Select PASS if this is "
5204"correct."
5229msgstr ""5205msgstr ""
52305206
5231#. description5207#. description
52325208
=== modified file 'providers/plainbox-provider-piglit/manage.py'
--- providers/plainbox-provider-piglit/manage.py 2015-03-24 14:51:33 +0000
+++ providers/plainbox-provider-piglit/manage.py 2015-03-31 13:34:54 +0000
@@ -21,7 +21,7 @@
2121
22setup(22setup(
23 name='2013.com.canonical.certification:piglit',23 name='2013.com.canonical.certification:piglit',
24 version="0.1",24 version="0.2",
25 description=N_("Piglit (OpenGL/OpenCL) Test Provider"),25 description=N_("Piglit (OpenGL/OpenCL) Test Provider"),
26 gettext_domain='plainbox-provider-piglit',26 gettext_domain='plainbox-provider-piglit',
27)27)
2828
=== modified file 'providers/plainbox-provider-piglit/po/pl.po'
--- providers/plainbox-provider-piglit/po/pl.po 2015-03-31 05:09:02 +0000
+++ providers/plainbox-provider-piglit/po/pl.po 2015-03-31 13:34:54 +0000
@@ -7,10 +7,11 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: plainbox-provider-piglit 0.1\n"8"Project-Id-Version: plainbox-provider-piglit 0.1\n"
9"Report-Msgid-Bugs-To: \n"9"Report-Msgid-Bugs-To: \n"
10"POT-Creation-Date: 2015-03-23 19:37+0100\n"10"POT-Creation-Date: 2015-03-31 15:28+0200\n"
11"PO-Revision-Date: 2015-03-31 01:06+0000\n"11"PO-Revision-Date: 2015-03-31 01:06+0000\n"
12"Last-Translator: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>\n"12"Last-Translator: Zygmunt Krynicki <zygmunt.krynicki@canonical.com>\n"
13"Language-Team: polski <>\n"13"Language-Team: polski <>\n"
14"Language: Polish\n"
14"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"17"Content-Transfer-Encoding: 8bit\n"
@@ -18,96 +19,95 @@
18"|| n%100>=20) ? 1 : 2;\n"19"|| n%100>=20) ? 1 : 2;\n"
19"X-Launchpad-Export-Date: 2015-03-31 05:09+0000\n"20"X-Launchpad-Export-Date: 2015-03-31 05:09+0000\n"
20"X-Generator: Launchpad (build 17413)\n"21"X-Generator: Launchpad (build 17413)\n"
21"Language: Polish\n"
2222
23#. summary23#. summary
24#: ../units/piglit.pxu:324#: ../units/piglit.pxu:4
25msgid "Run piglit tests for Frame Buffer Object (FBO) operations"25msgid "Run piglit tests for Frame Buffer Object (FBO) operations"
26msgstr "Uruchom testy piglita dla operacji na buforach ramki (FBO)"26msgstr "Uruchom testy piglita dla operacji na buforach ramki (FBO)"
2727
28#. description28#. description
29#: ../units/piglit.pxu:429#: ../units/piglit.pxu:5
30msgid ""30msgid ""
31"This job runs piglit tests for checking support for frame buffer object "31"This job runs piglit tests for checking support for frame buffer object "
32"operations, depth buffer and stencil buffer."32"operations, depth buffer and stencil buffer."
33msgstr ""33msgstr ""
3434
35#. summary35#. summary
36#: ../units/piglit.pxu:1936#: ../units/piglit.pxu:21
37msgid "Run piglit tests for OpenGL 2.1"37msgid "Run piglit tests for OpenGL 2.1"
38msgstr "Uruchom testy piglita dla OpenGL 2.1"38msgstr "Uruchom testy piglita dla OpenGL 2.1"
3939
40#. description40#. description
41#: ../units/piglit.pxu:2041#: ../units/piglit.pxu:22
42msgid "This job runs piglit tests for checking OpenGL 2.1 support."42msgid "This job runs piglit tests for checking OpenGL 2.1 support."
43msgstr ""43msgstr ""
4444
45#. summary45#. summary
46#: ../units/piglit.pxu:3446#: ../units/piglit.pxu:37
47msgid "Run piglit tests for Vertex Buffer Object (VBO) operations"47msgid "Run piglit tests for Vertex Buffer Object (VBO) operations"
48msgstr "Uruchom testy piglita dla operacji na buforach geometrii (VBO)"48msgstr "Uruchom testy piglita dla operacji na buforach geometrii (VBO)"
4949
50#. description50#. description
51#: ../units/piglit.pxu:3551#: ../units/piglit.pxu:38
52msgid ""52msgid ""
53"This job runs piglit tests for checking support for vertex buffer object "53"This job runs piglit tests for checking support for vertex buffer object "
54"operations."54"operations."
55msgstr ""55msgstr ""
5656
57#. summary57#. summary
58#: ../units/piglit.pxu:5058#: ../units/piglit.pxu:54
59msgid "Run piglit tests for GLSL fragment shader operations"59msgid "Run piglit tests for GLSL fragment shader operations"
60msgstr "Uruchom testy piglita dla operacji GLSL cieniowania pikseli"60msgstr "Uruchom testy piglita dla operacji GLSL cieniowania pikseli"
6161
62#. description62#. description
63#: ../units/piglit.pxu:5163#: ../units/piglit.pxu:55
64msgid ""64msgid ""
65"This job runs piglit tests for checking support for GLSL fragment shader "65"This job runs piglit tests for checking support for GLSL fragment shader "
66"operations."66"operations."
67msgstr ""67msgstr ""
6868
69#. summary69#. summary
70#: ../units/piglit.pxu:6670#: ../units/piglit.pxu:71
71msgid "Run piglit tests for GLSL vertex shader operations"71msgid "Run piglit tests for GLSL vertex shader operations"
72msgstr "Uruchom testy piglita dla operacji GLSL cieniowania wierzchołków"72msgstr "Uruchom testy piglita dla operacji GLSL cieniowania wierzchołków"
7373
74#. description74#. description
75#: ../units/piglit.pxu:6775#: ../units/piglit.pxu:72
76msgid ""76msgid ""
77"This job runs piglit tests for checking support for GLSL vertex shader "77"This job runs piglit tests for checking support for GLSL vertex shader "
78"operations."78"operations."
79msgstr ""79msgstr ""
8080
81#. summary81#. summary
82#: ../units/piglit.pxu:8482#: ../units/piglit.pxu:90
83msgid "Run piglit tests for texture-from-pixmap extension"83msgid "Run piglit tests for texture-from-pixmap extension"
84msgstr "Uruchom testy piglita dla rozszerzenia tekstura-z-piksmapy"84msgstr "Uruchom testy piglita dla rozszerzenia tekstura-z-piksmapy"
8585
86#. description86#. description
87#: ../units/piglit.pxu:8587#: ../units/piglit.pxu:91
88msgid ""88msgid ""
89"This job runs piglit tests for checking support for texture from pixmap."89"This job runs piglit tests for checking support for texture from pixmap."
90msgstr ""90msgstr ""
9191
92#. summary92#. summary
93#: ../units/piglit.pxu:9993#: ../units/piglit.pxu:106
94msgid "Run piglit tests for stencil buffer operations"94msgid "Run piglit tests for stencil buffer operations"
95msgstr "Uruchom testy piglita dla operacji na buforach szablonowych"95msgstr "Uruchom testy piglita dla operacji na buforach szablonowych"
9696
97#. description97#. description
98#: ../units/piglit.pxu:10098#: ../units/piglit.pxu:107
99msgid ""99msgid ""
100"This job runs piglit tests for checking support for stencil buffer "100"This job runs piglit tests for checking support for stencil buffer "
101"operations."101"operations."
102msgstr ""102msgstr ""
103103
104#. summary104#. summary
105#: ../units/piglit.pxu:115105#: ../units/piglit.pxu:123
106msgid "Combine all piglit test results into one"106msgid "Combine all piglit test results into one"
107msgstr "Połącz wszystkie wyniki testów piglita w jeden"107msgstr "Połącz wszystkie wyniki testów piglita w jeden"
108108
109#. description109#. description
110#: ../units/piglit.pxu:116110#: ../units/piglit.pxu:124
111msgid ""111msgid ""
112"This job combines all of the prior piglit results into one result file so "112"This job combines all of the prior piglit results into one result file so "
113"that they can be analyzed together. It is required to use piglit's built-in "113"that they can be analyzed together. It is required to use piglit's built-in "
@@ -115,24 +115,24 @@
115msgstr ""115msgstr ""
116116
117#. summary117#. summary
118#: ../units/piglit.pxu:131118#: ../units/piglit.pxu:140
119msgid "Create a HTML summary of all the piglit test results"119msgid "Create a HTML summary of all the piglit test results"
120msgstr "Utwórz HTML'owe podsumowanie wyników testów piglita"120msgstr "Utwórz HTML'owe podsumowanie wyników testów programu piglit"
121121
122#. description122#. description
123#: ../units/piglit.pxu:132123#: ../units/piglit.pxu:141
124msgid ""124msgid ""
125"This job runs the piglit HTML report generator on the combination of all the "125"This job runs the piglit HTML report generator on the combination of all the "
126"past results."126"past results."
127msgstr ""127msgstr ""
128128
129#. summary129#. summary
130#: ../units/piglit.pxu:147130#: ../units/piglit.pxu:159
131msgid "Archive HTML summary of all piglit test results"131msgid "Archive HTML summary of all piglit test results"
132msgstr "Zarchiwizuj HTML'owe podsumowanie wyników testów piglita"132msgstr "Zarchiwizuj HTML'owe podsumowanie wyników testów programu piglit"
133133
134#. description134#. description
135#: ../units/piglit.pxu:148135#: ../units/piglit.pxu:160
136msgid ""136msgid ""
137"This job archives the HTML summary of all the piglit results for convenient "137"This job archives the HTML summary of all the piglit results for convenient "
138"access. The result is not added as an attachment but can be loaded from the "138"access. The result is not added as an attachment but can be loaded from the "
@@ -140,12 +140,12 @@
140msgstr ""140msgstr ""
141141
142#. name142#. name
143#: ../units/piglit.pxu:165143#: ../units/piglit.pxu:177
144msgid "All piglit tests (tarball)"144msgid "All piglit tests (tarball)"
145msgstr "Wszystkie testy piglita (tarball)"145msgstr "Wszystkie testy programu piglit (tarball)"
146146
147#. description147#. description
148#: ../units/piglit.pxu:166148#: ../units/piglit.pxu:178
149msgid ""149msgid ""
150"This test plan runs all of the piglit jobs, summarizes them and creates an "150"This test plan runs all of the piglit jobs, summarizes them and creates an "
151"archive for easy inspection and sharing."151"archive for easy inspection and sharing."
@@ -153,6 +153,11 @@
153"Ten plan testów wykonuje wszystkie zadania piglita, tworzy podsumowanie oraz "153"Ten plan testów wykonuje wszystkie zadania piglita, tworzy podsumowanie oraz "
154"archiwum które ułatwia analizę oraz współdzielenie danych."154"archiwum które ułatwia analizę oraz współdzielenie danych."
155155
156#. description
157#: ../units/piglit.pxu:190
158msgid "Piglit Tests"
159msgstr "Testy programu Piglit"
160
156#: ../bin/piglit-wrapper:100161#: ../bin/piglit-wrapper:100
157#, c-format162#, c-format
158msgid "Created temporary directory: %s"163msgid "Created temporary directory: %s"
@@ -164,7 +169,7 @@
164169
165#: ../bin/piglit-wrapper:130170#: ../bin/piglit-wrapper:130
166msgid "Piglit didn't create the test result file?"171msgid "Piglit didn't create the test result file?"
167msgstr "Czy piglit nie utworzył katalogu z wynikami testów?"172msgstr "Czyżby piglit nie utworzył katalogu z wynikami testów?"
168173
169#: ../bin/piglit-wrapper:132174#: ../bin/piglit-wrapper:132
170#, c-format175#, c-format
@@ -259,7 +264,7 @@
259#: ../bin/piglit-combiner:188264#: ../bin/piglit-combiner:188
260#, c-format265#, c-format
261msgid "Unable to combine results: %s"266msgid "Unable to combine results: %s"
262msgstr ""267msgstr "Nie można złączyć wyników: %s"
263268
264#: ../bin/piglit-combiner:192269#: ../bin/piglit-combiner:192
265#, c-format270#, c-format
266271
=== modified file 'providers/plainbox-provider-piglit/po/plainbox-provider-piglit.pot'
--- providers/plainbox-provider-piglit/po/plainbox-provider-piglit.pot 2015-03-24 14:51:33 +0000
+++ providers/plainbox-provider-piglit/po/plainbox-provider-piglit.pot 2015-03-31 13:34:54 +0000
@@ -8,7 +8,7 @@
8msgstr ""8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2015-03-23 19:37+0100\n"11"POT-Creation-Date: 2015-03-31 15:28+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"14"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -19,93 +19,93 @@
19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"19"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
2020
21#. summary21#. summary
22#: ../units/piglit.pxu:322#: ../units/piglit.pxu:4
23msgid "Run piglit tests for Frame Buffer Object (FBO) operations"23msgid "Run piglit tests for Frame Buffer Object (FBO) operations"
24msgstr ""24msgstr ""
2525
26#. description26#. description
27#: ../units/piglit.pxu:427#: ../units/piglit.pxu:5
28msgid ""28msgid ""
29"This job runs piglit tests for checking support for frame buffer object "29"This job runs piglit tests for checking support for frame buffer object "
30"operations, depth buffer and stencil buffer."30"operations, depth buffer and stencil buffer."
31msgstr ""31msgstr ""
3232
33#. summary33#. summary
34#: ../units/piglit.pxu:1934#: ../units/piglit.pxu:21
35msgid "Run piglit tests for OpenGL 2.1"35msgid "Run piglit tests for OpenGL 2.1"
36msgstr ""36msgstr ""
3737
38#. description38#. description
39#: ../units/piglit.pxu:2039#: ../units/piglit.pxu:22
40msgid "This job runs piglit tests for checking OpenGL 2.1 support."40msgid "This job runs piglit tests for checking OpenGL 2.1 support."
41msgstr ""41msgstr ""
4242
43#. summary43#. summary
44#: ../units/piglit.pxu:3444#: ../units/piglit.pxu:37
45msgid "Run piglit tests for Vertex Buffer Object (VBO) operations"45msgid "Run piglit tests for Vertex Buffer Object (VBO) operations"
46msgstr ""46msgstr ""
4747
48#. description48#. description
49#: ../units/piglit.pxu:3549#: ../units/piglit.pxu:38
50msgid ""50msgid ""
51"This job runs piglit tests for checking support for vertex buffer object "51"This job runs piglit tests for checking support for vertex buffer object "
52"operations."52"operations."
53msgstr ""53msgstr ""
5454
55#. summary55#. summary
56#: ../units/piglit.pxu:5056#: ../units/piglit.pxu:54
57msgid "Run piglit tests for GLSL fragment shader operations"57msgid "Run piglit tests for GLSL fragment shader operations"
58msgstr ""58msgstr ""
5959
60#. description60#. description
61#: ../units/piglit.pxu:5161#: ../units/piglit.pxu:55
62msgid ""62msgid ""
63"This job runs piglit tests for checking support for GLSL fragment shader "63"This job runs piglit tests for checking support for GLSL fragment shader "
64"operations."64"operations."
65msgstr ""65msgstr ""
6666
67#. summary67#. summary
68#: ../units/piglit.pxu:6668#: ../units/piglit.pxu:71
69msgid "Run piglit tests for GLSL vertex shader operations"69msgid "Run piglit tests for GLSL vertex shader operations"
70msgstr ""70msgstr ""
7171
72#. description72#. description
73#: ../units/piglit.pxu:6773#: ../units/piglit.pxu:72
74msgid ""74msgid ""
75"This job runs piglit tests for checking support for GLSL vertex shader "75"This job runs piglit tests for checking support for GLSL vertex shader "
76"operations."76"operations."
77msgstr ""77msgstr ""
7878
79#. summary79#. summary
80#: ../units/piglit.pxu:8480#: ../units/piglit.pxu:90
81msgid "Run piglit tests for texture-from-pixmap extension"81msgid "Run piglit tests for texture-from-pixmap extension"
82msgstr ""82msgstr ""
8383
84#. description84#. description
85#: ../units/piglit.pxu:8585#: ../units/piglit.pxu:91
86msgid ""86msgid ""
87"This job runs piglit tests for checking support for texture from pixmap."87"This job runs piglit tests for checking support for texture from pixmap."
88msgstr ""88msgstr ""
8989
90#. summary90#. summary
91#: ../units/piglit.pxu:9991#: ../units/piglit.pxu:106
92msgid "Run piglit tests for stencil buffer operations"92msgid "Run piglit tests for stencil buffer operations"
93msgstr ""93msgstr ""
9494
95#. description95#. description
96#: ../units/piglit.pxu:10096#: ../units/piglit.pxu:107
97msgid ""97msgid ""
98"This job runs piglit tests for checking support for stencil buffer "98"This job runs piglit tests for checking support for stencil buffer "
99"operations."99"operations."
100msgstr ""100msgstr ""
101101
102#. summary102#. summary
103#: ../units/piglit.pxu:115103#: ../units/piglit.pxu:123
104msgid "Combine all piglit test results into one"104msgid "Combine all piglit test results into one"
105msgstr ""105msgstr ""
106106
107#. description107#. description
108#: ../units/piglit.pxu:116108#: ../units/piglit.pxu:124
109msgid ""109msgid ""
110"This job combines all of the prior piglit results into one result file so "110"This job combines all of the prior piglit results into one result file so "
111"that they can be analyzed together. It is required to use piglit's built-in "111"that they can be analyzed together. It is required to use piglit's built-in "
@@ -113,24 +113,24 @@
113msgstr ""113msgstr ""
114114
115#. summary115#. summary
116#: ../units/piglit.pxu:131116#: ../units/piglit.pxu:140
117msgid "Create a HTML summary of all the piglit test results"117msgid "Create a HTML summary of all the piglit test results"
118msgstr ""118msgstr ""
119119
120#. description120#. description
121#: ../units/piglit.pxu:132121#: ../units/piglit.pxu:141
122msgid ""122msgid ""
123"This job runs the piglit HTML report generator on the combination of all the "123"This job runs the piglit HTML report generator on the combination of all the "
124"past results."124"past results."
125msgstr ""125msgstr ""
126126
127#. summary127#. summary
128#: ../units/piglit.pxu:147128#: ../units/piglit.pxu:159
129msgid "Archive HTML summary of all piglit test results"129msgid "Archive HTML summary of all piglit test results"
130msgstr ""130msgstr ""
131131
132#. description132#. description
133#: ../units/piglit.pxu:148133#: ../units/piglit.pxu:160
134msgid ""134msgid ""
135"This job archives the HTML summary of all the piglit results for convenient "135"This job archives the HTML summary of all the piglit results for convenient "
136"access. The result is not added as an attachment but can be loaded from the "136"access. The result is not added as an attachment but can be loaded from the "
@@ -138,17 +138,22 @@
138msgstr ""138msgstr ""
139139
140#. name140#. name
141#: ../units/piglit.pxu:165141#: ../units/piglit.pxu:177
142msgid "All piglit tests (tarball)"142msgid "All piglit tests (tarball)"
143msgstr ""143msgstr ""
144144
145#. description145#. description
146#: ../units/piglit.pxu:166146#: ../units/piglit.pxu:178
147msgid ""147msgid ""
148"This test plan runs all of the piglit jobs, summarizes them and creates an "148"This test plan runs all of the piglit jobs, summarizes them and creates an "
149"archive for easy inspection and sharing."149"archive for easy inspection and sharing."
150msgstr ""150msgstr ""
151151
152#. description
153#: ../units/piglit.pxu:190
154msgid "Piglit Tests"
155msgstr ""
156
152#: ../bin/piglit-wrapper:100157#: ../bin/piglit-wrapper:100
153#, c-format158#, c-format
154msgid "Created temporary directory: %s"159msgid "Created temporary directory: %s"
155160
=== modified file 'providers/plainbox-provider-piglit/units/piglit.pxu'
--- providers/plainbox-provider-piglit/units/piglit.pxu 2015-03-24 14:51:33 +0000
+++ providers/plainbox-provider-piglit/units/piglit.pxu 2015-03-31 13:34:54 +0000
@@ -182,3 +182,15 @@
182 piglit/test/.*182 piglit/test/.*
183 piglit/support/tarball183 piglit/support/tarball
184estimated_duration: 46184estimated_duration: 46
185
186unit: job
187id: __piglit__
188category_id: 2013.com.canonical.plainbox::graphics
189_summary: Piglit Tests
190_description: Piglit Tests
191plugin: local
192command:
193 shopt -s extglob
194 cat $PLAINBOX_PROVIDER_UNITS/piglit.pxu
195estimated_duration: 1
196flags: preserve-locale

Subscribers

People subscribed via source and target branches