* [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests
@ 2019-09-04 10:43 Arkadiusz Hiler
2019-09-04 11:41 ` Petri Latvala
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Arkadiusz Hiler @ 2019-09-04 10:43 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
We have a requirement that all new tests should be documented using
igt_describe() & family since 2f273018ac42 ("CONTRIBUTING: Rework a bit and update").
Let's start actually enforcing that by having this as a part of the CI.
For consumption by:
https://gitlab.freedesktop.org/gfx-ci/i915-infra/merge_requests/55
Cc: Petri Latvala <petri.latvala@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---
.gitlab-ci.yml | 9 ++++
.gitlab-ci/list_undocumented_tests.py | 61 +++++++++++++++++++++++++++
2 files changed, 70 insertions(+)
create mode 100755 .gitlab-ci/list_undocumented_tests.py
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 17378df5..d465c79a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -237,6 +237,15 @@ test:test-list-diff:
stage: test
script: diff <(sed "s/ /\n/g" meson-test-list.txt| grep -v 'vc4\|v3d\|panfrost' | sort) <(sed "s/ /\n/g" autotools-test-list.txt | sort)
+test:list-undocumented-tests:
+ dependencies:
+ - build:tests-fedora
+ stage: test
+ script: .gitlab-ci/list_undocumented_tests.py build/tests/test-list.txt > undocumented_tests.txt
+ artifacts:
+ paths:
+ - undocumented_tests.txt
+
################### DEPLOY #########################
pages:
diff --git a/.gitlab-ci/list_undocumented_tests.py b/.gitlab-ci/list_undocumented_tests.py
new file mode 100755
index 00000000..ee836559
--- /dev/null
+++ b/.gitlab-ci/list_undocumented_tests.py
@@ -0,0 +1,61 @@
+#!/usr/bin/env python3
+
+import re
+import sys
+import os.path
+import subprocess
+
+from collections import namedtuple
+
+Subtest = namedtuple("Subtest", "name description")
+
+def get_testlist(path):
+ "read binaries' names from test-list.txt"
+ with open(path, 'r') as f:
+ assert(f.readline() == "TESTLIST\n")
+ tests = f.readline().strip().split(" ")
+ assert(f.readline() == "END TESTLIST\n")
+
+ return tests
+
+def get_subtests(testdir, test):
+ "execute test and get subtests with their descriptions via --describe"
+ output = []
+ full_test_path = os.path.join(testdir, test)
+ proc = subprocess.run([full_test_path, "--describe"], stdout=subprocess.PIPE)
+ description = ""
+ current_subtest = None
+
+ for line in proc.stdout.decode().splitlines():
+ if line.startswith("SUB "):
+ output += [Subtest(current_subtest, description)]
+ description = ""
+ current_subtest = line.split(' ')[1]
+ else:
+ description += line
+
+ output += [Subtest(current_subtest, description)]
+
+ return output
+
+def main():
+ testlist_file = sys.argv[1]
+ testdir = os.path.abspath(os.path.dirname(testlist_file))
+
+ tests = get_testlist(testlist_file)
+
+ for test in tests:
+ subtests = get_subtests(testdir, test)
+
+ if subtests and subtests[0].name:
+ # no top level description
+ print(test)
+
+ for name, description in subtests:
+ if not name:
+ continue
+
+ if "NO DOCUMENTATION!" in description:
+ print("{}@{}".format(test, name))
+
+main()
--
2.21.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests
2019-09-04 10:43 [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests Arkadiusz Hiler
@ 2019-09-04 11:41 ` Petri Latvala
2019-09-04 11:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-09-04 14:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Petri Latvala @ 2019-09-04 11:41 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
On Wed, Sep 04, 2019 at 01:43:21PM +0300, Arkadiusz Hiler wrote:
> We have a requirement that all new tests should be documented using
> igt_describe() & family since 2f273018ac42 ("CONTRIBUTING: Rework a bit and update").
>
> Let's start actually enforcing that by having this as a part of the CI.
>
> For consumption by:
> https://gitlab.freedesktop.org/gfx-ci/i915-infra/merge_requests/55
>
> Cc: Petri Latvala <petri.latvala@intel.com>
> Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> ---
> .gitlab-ci.yml | 9 ++++
> .gitlab-ci/list_undocumented_tests.py | 61 +++++++++++++++++++++++++++
> 2 files changed, 70 insertions(+)
> create mode 100755 .gitlab-ci/list_undocumented_tests.py
>
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 17378df5..d465c79a 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -237,6 +237,15 @@ test:test-list-diff:
> stage: test
> script: diff <(sed "s/ /\n/g" meson-test-list.txt| grep -v 'vc4\|v3d\|panfrost' | sort) <(sed "s/ /\n/g" autotools-test-list.txt | sort)
>
> +test:list-undocumented-tests:
> + dependencies:
> + - build:tests-fedora
> + stage: test
> + script: .gitlab-ci/list_undocumented_tests.py build/tests/test-list.txt > undocumented_tests.txt
> + artifacts:
> + paths:
> + - undocumented_tests.txt
> +
> ################### DEPLOY #########################
>
> pages:
> diff --git a/.gitlab-ci/list_undocumented_tests.py b/.gitlab-ci/list_undocumented_tests.py
> new file mode 100755
> index 00000000..ee836559
> --- /dev/null
> +++ b/.gitlab-ci/list_undocumented_tests.py
> @@ -0,0 +1,61 @@
> +#!/usr/bin/env python3
> +
> +import re
> +import sys
> +import os.path
> +import subprocess
> +
> +from collections import namedtuple
> +
> +Subtest = namedtuple("Subtest", "name description")
> +
> +def get_testlist(path):
> + "read binaries' names from test-list.txt"
> + with open(path, 'r') as f:
> + assert(f.readline() == "TESTLIST\n")
> + tests = f.readline().strip().split(" ")
> + assert(f.readline() == "END TESTLIST\n")
> +
> + return tests
> +
> +def get_subtests(testdir, test):
> + "execute test and get subtests with their descriptions via --describe"
> + output = []
> + full_test_path = os.path.join(testdir, test)
> + proc = subprocess.run([full_test_path, "--describe"], stdout=subprocess.PIPE)
> + description = ""
> + current_subtest = None
> +
> + for line in proc.stdout.decode().splitlines():
> + if line.startswith("SUB "):
> + output += [Subtest(current_subtest, description)]
> + description = ""
> + current_subtest = line.split(' ')[1]
> + else:
> + description += line
> +
> + output += [Subtest(current_subtest, description)]
> +
> + return output
> +
> +def main():
> + testlist_file = sys.argv[1]
> + testdir = os.path.abspath(os.path.dirname(testlist_file))
> +
> + tests = get_testlist(testlist_file)
> +
> + for test in tests:
> + subtests = get_subtests(testdir, test)
> +
> + if subtests and subtests[0].name:
> + # no top level description
> + print(test)
> +
> + for name, description in subtests:
> + if not name:
> + continue
> +
> + if "NO DOCUMENTATION!" in description:
> + print("{}@{}".format(test, name))
> +
> +main()
> --
> 2.21.0
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for .gitlab-ci: Produce a list of undocumented tests
2019-09-04 10:43 [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests Arkadiusz Hiler
2019-09-04 11:41 ` Petri Latvala
@ 2019-09-04 11:55 ` Patchwork
2019-09-04 14:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-09-04 11:55 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: .gitlab-ci: Produce a list of undocumented tests
URL : https://patchwork.freedesktop.org/series/66207/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6833 -> IGTPW_3417
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/66207/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3417 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3:
- fi-blb-e6850: [PASS][1] -> [INCOMPLETE][2] ([fdo#107718])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live_execlists:
- fi-skl-gvtdvm: [PASS][3] -> [DMESG-FAIL][4] ([fdo#111108])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html
* igt@kms_chamelium@hdmi-edid-read:
- fi-icl-u2: [PASS][5] -> [FAIL][6] ([fdo#109483])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-icl-u2/igt@kms_chamelium@hdmi-edid-read.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-icl-u2/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_frontbuffer_tracking@basic:
- fi-icl-u2: [PASS][7] -> [FAIL][8] ([fdo#103167])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-icl-u2/igt@kms_frontbuffer_tracking@basic.html
#### Possible fixes ####
* igt@gem_ctx_create@basic-files:
- fi-bxt-dsi: [INCOMPLETE][9] ([fdo#103927]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-bxt-dsi/igt@gem_ctx_create@basic-files.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-bxt-dsi/igt@gem_ctx_create@basic-files.html
* igt@i915_selftest@live_gem_contexts:
- fi-kbl-guc: [INCOMPLETE][11] ([fdo#111519]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-kbl-guc/igt@i915_selftest@live_gem_contexts.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-kbl-guc/igt@i915_selftest@live_gem_contexts.html
#### Warnings ####
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][13] ([fdo#111096]) -> [FAIL][14] ([fdo#111407])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#111108]: https://bugs.freedesktop.org/show_bug.cgi?id=111108
[fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
[fdo#111519]: https://bugs.freedesktop.org/show_bug.cgi?id=111519
Participating hosts (53 -> 47)
------------------------------
Additional (1): fi-icl-u3
Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5168 -> IGTPW_3417
CI-20190529: 20190529
CI_DRM_6833: b9d119cf9ec2e09a7a21ec0cc72dea1f1ce89f7a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3417: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/
IGT_5168: 04eac35177ba046ce55c495e510bc49443ec7429 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for .gitlab-ci: Produce a list of undocumented tests
2019-09-04 10:43 [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests Arkadiusz Hiler
2019-09-04 11:41 ` Petri Latvala
2019-09-04 11:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-09-04 14:12 ` Patchwork
2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2019-09-04 14:12 UTC (permalink / raw)
To: Arkadiusz Hiler; +Cc: igt-dev
== Series Details ==
Series: .gitlab-ci: Produce a list of undocumented tests
URL : https://patchwork.freedesktop.org/series/66207/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6833_full -> IGTPW_3417_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/66207/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3417_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@rcs0-s3:
- shard-iclb: [PASS][1] -> [FAIL][2] ([fdo#103375]) +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb1/igt@gem_ctx_isolation@rcs0-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb2/igt@gem_ctx_isolation@rcs0-s3.html
* igt@gem_exec_schedule@independent-bsd:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +3 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb6/igt@gem_exec_schedule@independent-bsd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb2/igt@gem_exec_schedule@independent-bsd.html
* igt@gem_exec_schedule@preempt-other-bsd1:
- shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +20 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb6/igt@gem_exec_schedule@preempt-other-bsd1.html
* igt@gem_tiled_swapping@non-threaded:
- shard-glk: [PASS][7] -> [DMESG-WARN][8] ([fdo#108686])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-glk6/igt@gem_tiled_swapping@non-threaded.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-glk3/igt@gem_tiled_swapping@non-threaded.html
- shard-kbl: [PASS][9] -> [DMESG-WARN][10] ([fdo#108686])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-kbl4/igt@gem_tiled_swapping@non-threaded.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-kbl1/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_workarounds@suspend-resume-context:
- shard-apl: [PASS][11] -> [DMESG-WARN][12] ([fdo#108566]) +2 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-b:
- shard-snb: [PASS][13] -> [SKIP][14] ([fdo#109271] / [fdo#109278])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-snb5/igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-b.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-snb4/igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-b.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-glk: [PASS][15] -> [FAIL][16] ([fdo#103060])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-glk6/igt@kms_flip@2x-dpms-vs-vblank-race.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-glk4/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +4 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_plane@plane-position-covered-pipe-a-planes:
- shard-snb: [PASS][19] -> [SKIP][20] ([fdo#109271]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-snb2/igt@kms_plane@plane-position-covered-pipe-a-planes.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-snb4/igt@kms_plane@plane-position-covered-pipe-a-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103166])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-y.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109441]) +2 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb3/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][25] -> [FAIL][26] ([fdo#99912])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw1/igt@kms_setmode@basic.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw7/igt@kms_setmode@basic.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-snb: [PASS][27] -> [FAIL][28] ([fdo#103375]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-snb7/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-snb2/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@perf_pmu@most-busy-check-all-vecs0:
- shard-apl: [PASS][29] -> [FAIL][30] ([fdo#111545]) +2 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl1/igt@perf_pmu@most-busy-check-all-vecs0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl5/igt@perf_pmu@most-busy-check-all-vecs0.html
* igt@prime_busy@hang-bsd1:
- shard-hsw: [PASS][31] -> [INCOMPLETE][32] ([fdo#103540])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw4/igt@prime_busy@hang-bsd1.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw1/igt@prime_busy@hang-bsd1.html
#### Possible fixes ####
* igt@gem_eio@hibernate:
- shard-hsw: [FAIL][33] ([fdo#111550]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw5/igt@gem_eio@hibernate.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw8/igt@gem_eio@hibernate.html
- shard-iclb: [FAIL][35] ([fdo#111550]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb8/igt@gem_eio@hibernate.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb1/igt@gem_eio@hibernate.html
- shard-apl: [FAIL][37] ([fdo#111550]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl3/igt@gem_eio@hibernate.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl4/igt@gem_eio@hibernate.html
- shard-snb: [FAIL][39] ([fdo#107918] / [fdo#111550]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-snb4/igt@gem_eio@hibernate.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-snb5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-iclb: [FAIL][41] ([fdo#109661]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb8/igt@gem_eio@reset-stress.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb5/igt@gem_eio@reset-stress.html
* igt@gem_exec_schedule@deep-bsd:
- shard-iclb: [SKIP][43] ([fdo#111325]) -> [PASS][44] +7 similar issues
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb2/igt@gem_exec_schedule@deep-bsd.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb3/igt@gem_exec_schedule@deep-bsd.html
* igt@gem_exec_schedule@out-order-bsd2:
- shard-iclb: [SKIP][45] ([fdo#109276]) -> [PASS][46] +11 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb8/igt@gem_exec_schedule@out-order-bsd2.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb2/igt@gem_exec_schedule@out-order-bsd2.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-hsw: [FAIL][47] ([fdo#111548]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw5/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw8/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-iclb: [FAIL][49] ([fdo#103375]) -> [PASS][50]
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb8/igt@i915_suspend@fence-restore-tiled2untiled.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb7/igt@i915_suspend@fence-restore-tiled2untiled.html
- shard-apl: [FAIL][51] ([fdo#103375]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl3/igt@i915_suspend@fence-restore-tiled2untiled.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl4/igt@i915_suspend@fence-restore-tiled2untiled.html
- shard-snb: [FAIL][53] ([fdo#103375]) -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-snb4/igt@i915_suspend@fence-restore-tiled2untiled.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-snb1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding:
- shard-apl: [INCOMPLETE][55] ([fdo#103927]) -> [PASS][56]
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl6/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x256-sliding.html
* igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding:
- shard-kbl: [FAIL][57] ([fdo#103232]) -> [PASS][58]
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html
- shard-apl: [FAIL][59] ([fdo#103232]) -> [PASS][60]
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl8/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-64x64-sliding.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: [FAIL][61] ([fdo#105363]) -> [PASS][62]
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-hsw: [INCOMPLETE][63] ([fdo#103540]) -> [PASS][64]
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw7/igt@kms_flip@flip-vs-suspend.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw1/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_tiling@flip-to-x-tiled:
- shard-iclb: [INCOMPLETE][65] ([fdo#107713]) -> [PASS][66]
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb7/igt@kms_flip_tiling@flip-to-x-tiled.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb1/igt@kms_flip_tiling@flip-to-x-tiled.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-iclb: [FAIL][67] ([fdo#103167]) -> [PASS][68] +6 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
- shard-apl: [DMESG-WARN][69] ([fdo#108566]) -> [PASS][70] +2 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl8/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
* igt@kms_psr@no_drrs:
- shard-iclb: [FAIL][71] ([fdo#108341]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb1/igt@kms_psr@no_drrs.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb5/igt@kms_psr@no_drrs.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [SKIP][73] ([fdo#109441]) -> [PASS][74] +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-iclb4/igt@kms_psr@psr2_primary_page_flip.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-hsw: [FAIL][75] ([fdo#103375]) -> [PASS][76] +2 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-hsw5/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-hsw8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@perf_pmu@semaphore-wait-vecs0:
- shard-apl: [FAIL][77] ([fdo#111545]) -> [PASS][78] +1 similar issue
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6833/shard-apl3/igt@perf_pmu@semaphore-wait-vecs0.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/shard-apl2/igt@perf_pmu@semaphore-wait-vecs0.html
[fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107918]: https://bugs.freedesktop.org/show_bug.cgi?id=107918
[fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109661]: https://bugs.freedesktop.org/show_bug.cgi?id=109661
[fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
[fdo#111545]: https://bugs.freedesktop.org/show_bug.cgi?id=111545
[fdo#111548]: https://bugs.freedesktop.org/show_bug.cgi?id=111548
[fdo#111550]: https://bugs.freedesktop.org/show_bug.cgi?id=111550
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (10 -> 6)
------------------------------
Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5168 -> IGTPW_3417
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_6833: b9d119cf9ec2e09a7a21ec0cc72dea1f1ce89f7a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3417: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/
IGT_5168: 04eac35177ba046ce55c495e510bc49443ec7429 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3417/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-09-04 14:12 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-04 10:43 [igt-dev] [PATCH i-g-t] .gitlab-ci: Produce a list of undocumented tests Arkadiusz Hiler
2019-09-04 11:41 ` Petri Latvala
2019-09-04 11:55 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-09-04 14:12 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox