* [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
@ 2019-08-19 22:31 Antonio Argenziano
2019-08-19 23:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Antonio Argenziano @ 2019-08-19 22:31 UTC (permalink / raw)
To: igt-dev
dmabuf_selftests has been recently added to the test list but not added
to the special handling in igt_command_line.sh and therefore build
testing would fail.
Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/igt_command_line.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
index 92643c4d..eaec1b4f 100755
--- a/tests/igt_command_line.sh
+++ b/tests/igt_command_line.sh
@@ -90,7 +90,7 @@ check_test ()
# Subtest enumeration of kernel selftest launchers depends
# on the running kernel. If selftests are not enabled,
# they will output nothing and exit with 0.
- if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
+ if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
fail $test
fi
fi
--
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] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/igt_command_line.sh: Add new selftest for special handling
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
@ 2019-08-19 23:37 ` Patchwork
2019-08-20 8:32 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-08-19 23:37 UTC (permalink / raw)
To: Antonio Argenziano; +Cc: igt-dev
== Series Details ==
Series: tests/igt_command_line.sh: Add new selftest for special handling
URL : https://patchwork.freedesktop.org/series/65438/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6741 -> IGTPW_3366
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/65438/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3366 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@gem_busy@busy-all:
- fi-icl-u3: [DMESG-WARN][1] ([fdo#107724]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/fi-icl-u3/igt@gem_busy@busy-all.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/fi-icl-u3/igt@gem_busy@busy-all.html
* igt@gem_exec_suspend@basic-s3:
- fi-blb-e6850: [INCOMPLETE][3] ([fdo#107718]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
* igt@i915_selftest@live_execlists:
- {fi-icl-guc}: [INCOMPLETE][5] ([fdo#107713]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/fi-icl-guc/igt@i915_selftest@live_execlists.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/fi-icl-guc/igt@i915_selftest@live_execlists.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#108840]: https://bugs.freedesktop.org/show_bug.cgi?id=108840
Participating hosts (55 -> 43)
------------------------------
Missing (12): fi-kbl-soraka fi-cml-u2 fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-apl-guc fi-bxt-j4205 fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5141 -> IGTPW_3366
CI-20190529: 20190529
CI_DRM_6741: 0db9333be821acadbf8c476e13b160522d252d77 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/
IGT_5141: 7102b417fedc2a1ea6f72d768a9f1bd100a34f13 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
2019-08-19 23:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-08-20 8:32 ` Chris Wilson
2019-08-20 9:18 ` Petri Latvala
2019-08-20 8:51 ` Chris Wilson
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Chris Wilson @ 2019-08-20 8:32 UTC (permalink / raw)
To: Antonio Argenziano, igt-dev
Quoting Antonio Argenziano (2019-08-19 23:31:37)
> dmabuf_selftests has been recently added to the test list but not added
> to the special handling in igt_command_line.sh and therefore build
> testing would fail.
>
> Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> ---
> tests/igt_command_line.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
> index 92643c4d..eaec1b4f 100755
> --- a/tests/igt_command_line.sh
> +++ b/tests/igt_command_line.sh
> @@ -90,7 +90,7 @@ check_test ()
> # Subtest enumeration of kernel selftest launchers depends
> # on the running kernel. If selftests are not enabled,
> # they will output nothing and exit with 0.
> - if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
> + if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
This does not scale. What does this test even achieve as it appears not
to be the intended behaviour?
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
2019-08-19 23:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-08-20 8:32 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
@ 2019-08-20 8:51 ` Chris Wilson
2019-08-20 15:04 ` Antonio Argenziano
2019-08-20 9:16 ` Petri Latvala
2019-08-20 11:36 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
4 siblings, 1 reply; 9+ messages in thread
From: Chris Wilson @ 2019-08-20 8:51 UTC (permalink / raw)
To: Antonio Argenziano, igt-dev
Quoting Antonio Argenziano (2019-08-19 23:31:37)
> dmabuf_selftests has been recently added to the test list but not added
> to the special handling in igt_command_line.sh and therefore build
> testing would fail.
>
> Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> ---
> tests/igt_command_line.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
> index 92643c4d..eaec1b4f 100755
> --- a/tests/igt_command_line.sh
> +++ b/tests/igt_command_line.sh
> @@ -90,7 +90,7 @@ check_test ()
> # Subtest enumeration of kernel selftest launchers depends
> # on the running kernel. If selftests are not enabled,
> # they will output nothing and exit with 0.
> - if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
> + if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
The name is just "dmabuf"
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
` (2 preceding siblings ...)
2019-08-20 8:51 ` Chris Wilson
@ 2019-08-20 9:16 ` Petri Latvala
2019-08-20 11:36 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Petri Latvala @ 2019-08-20 9:16 UTC (permalink / raw)
To: Antonio Argenziano; +Cc: igt-dev
On Mon, Aug 19, 2019 at 03:31:37PM -0700, Antonio Argenziano wrote:
> dmabuf_selftests has been recently added to the test list but not added
> to the special handling in igt_command_line.sh and therefore build
> testing would fail.
>
> Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
I already slapped my Rb on this one and merged it to get CI building
IGT again.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-20 8:32 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
@ 2019-08-20 9:18 ` Petri Latvala
0 siblings, 0 replies; 9+ messages in thread
From: Petri Latvala @ 2019-08-20 9:18 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
On Tue, Aug 20, 2019 at 09:32:05AM +0100, Chris Wilson wrote:
> Quoting Antonio Argenziano (2019-08-19 23:31:37)
> > dmabuf_selftests has been recently added to the test list but not added
> > to the special handling in igt_command_line.sh and therefore build
> > testing would fail.
> >
> > Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > ---
> > tests/igt_command_line.sh | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
> > index 92643c4d..eaec1b4f 100755
> > --- a/tests/igt_command_line.sh
> > +++ b/tests/igt_command_line.sh
> > @@ -90,7 +90,7 @@ check_test ()
> > # Subtest enumeration of kernel selftest launchers depends
> > # on the running kernel. If selftests are not enabled,
> > # they will output nothing and exit with 0.
> > - if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
> > + if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
>
> This does not scale. What does this test even achieve as it appears not
> to be the intended behaviour?
Indeed it doesn't. This whole line is here to accomodate the special
needs of kernel selftest launchers that can't conform to the
documented and expected interface for IGT tests.
A proper solution for making test run planning produce different list
from executed-and-reported tests is dynamic subtests, v2 of which is
on the list. When that can be merged, this ugly if can get nuked.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/igt_command_line.sh: Add new selftest for special handling
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
` (3 preceding siblings ...)
2019-08-20 9:16 ` Petri Latvala
@ 2019-08-20 11:36 ` Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2019-08-20 11:36 UTC (permalink / raw)
To: Antonio Argenziano; +Cc: igt-dev
== Series Details ==
Series: tests/igt_command_line.sh: Add new selftest for special handling
URL : https://patchwork.freedesktop.org/series/65438/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6741_full -> IGTPW_3366_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/65438/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3366_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_isolation@vecs0-s3:
- shard-apl: [PASS][1] -> [DMESG-WARN][2] ([fdo#108566])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-apl8/igt@gem_ctx_isolation@vecs0-s3.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-apl4/igt@gem_ctx_isolation@vecs0-s3.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +6 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_exec_schedule@reorder-wide-bsd1:
- shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +15 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb4/igt@gem_exec_schedule@reorder-wide-bsd1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb7/igt@gem_exec_schedule@reorder-wide-bsd1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-apl: [PASS][7] -> [INCOMPLETE][8] ([fdo#103927]) +3 similar issues
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-apl1/igt@kms_flip@wf_vblank-ts-check.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-apl4/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-iclb: [PASS][9] -> [FAIL][10] ([fdo#103167]) +5 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#109642] / [fdo#111068])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@no_drrs:
- shard-iclb: [PASS][13] -> [FAIL][14] ([fdo#108341])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb2/igt@kms_psr@no_drrs.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@kms_psr@no_drrs.html
* igt@kms_psr@psr2_primary_mmap_gtt:
- shard-iclb: [PASS][15] -> [SKIP][16] ([fdo#109441])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb2/igt@kms_psr@psr2_primary_mmap_gtt.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb4/igt@kms_psr@psr2_primary_mmap_gtt.html
#### Possible fixes ####
* igt@gem_bad_reloc@negative-reloc-bsd2:
- shard-iclb: [SKIP][17] ([fdo#109276]) -> [PASS][18] +9 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb3/igt@gem_bad_reloc@negative-reloc-bsd2.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb2/igt@gem_bad_reloc@negative-reloc-bsd2.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [SKIP][19] ([fdo#110854]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb8/igt@gem_exec_balancer@smoke.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb4/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@preempt-other-bsd:
- shard-iclb: [SKIP][21] ([fdo#111325]) -> [PASS][22] +3 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb1/igt@gem_exec_schedule@preempt-other-bsd.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb5/igt@gem_exec_schedule@preempt-other-bsd.html
* igt@gem_mmap_gtt@forked-big-copy:
- shard-apl: [INCOMPLETE][23] ([fdo#103927]) -> [PASS][24] +4 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-apl4/igt@gem_mmap_gtt@forked-big-copy.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-apl8/igt@gem_mmap_gtt@forked-big-copy.html
* igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding:
- shard-apl: [FAIL][25] ([fdo#103232]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-apl4/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html
- shard-kbl: [FAIL][27] ([fdo#103232]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-256x256-sliding.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-hsw: [FAIL][29] ([fdo#103355]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-hsw1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-glk: [FAIL][31] ([fdo#103167]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-glk1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt:
- shard-iclb: [FAIL][33] ([fdo#103167]) -> [PASS][34] +5 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes:
- shard-apl: [DMESG-WARN][35] ([fdo#108566]) -> [PASS][36] +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-apl5/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-iclb: [FAIL][37] ([fdo#103166]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-y.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb5/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [SKIP][39] ([fdo#109441]) -> [PASS][40] +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_setmode@basic:
- shard-kbl: [FAIL][41] ([fdo#99912]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-kbl1/igt@kms_setmode@basic.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-kbl2/igt@kms_setmode@basic.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [SKIP][43] ([fdo#109276]) -> [FAIL][44] ([fdo#111329])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb6/igt@gem_ctx_isolation@vcs1-nonpriv.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_mocs_settings@mocs-reset-bsd2:
- shard-iclb: [FAIL][45] ([fdo#111330]) -> [SKIP][46] ([fdo#109276])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb8/igt@gem_mocs_settings@mocs-reset-bsd2.html
* igt@gem_mocs_settings@mocs-settings-bsd2:
- shard-iclb: [SKIP][47] ([fdo#109276]) -> [FAIL][48] ([fdo#111330])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb3/igt@gem_mocs_settings@mocs-settings-bsd2.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb1/igt@gem_mocs_settings@mocs-settings-bsd2.html
* igt@prime_nv_api@i915_nv_double_export:
- shard-iclb: [SKIP][49] ([fdo#109291]) -> [INCOMPLETE][50] ([fdo#107713])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6741/shard-iclb1/igt@prime_nv_api@i915_nv_double_export.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/shard-iclb4/igt@prime_nv_api@i915_nv_double_export.html
[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#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108341]: https://bugs.freedesktop.org/show_bug.cgi?id=108341
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
[fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329
[fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
[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_5141 -> IGTPW_3366
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_6741: 0db9333be821acadbf8c476e13b160522d252d77 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3366: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3366/
IGT_5141: 7102b417fedc2a1ea6f72d768a9f1bd100a34f13 @ 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_3366/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-20 8:51 ` Chris Wilson
@ 2019-08-20 15:04 ` Antonio Argenziano
2019-08-23 9:25 ` Petri Latvala
0 siblings, 1 reply; 9+ messages in thread
From: Antonio Argenziano @ 2019-08-20 15:04 UTC (permalink / raw)
To: Chris Wilson, igt-dev
On 20/08/19 01:51, Chris Wilson wrote:
> Quoting Antonio Argenziano (2019-08-19 23:31:37)
>> dmabuf_selftests has been recently added to the test list but not added
>> to the special handling in igt_command_line.sh and therefore build
>> testing would fail.
>>
>> Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>> ---
>> tests/igt_command_line.sh | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
>> index 92643c4d..eaec1b4f 100755
>> --- a/tests/igt_command_line.sh
>> +++ b/tests/igt_command_line.sh
>> @@ -90,7 +90,7 @@ check_test ()
>> # Subtest enumeration of kernel selftest launchers depends
>> # on the running kernel. If selftests are not enabled,
>> # they will output nothing and exit with 0.
>> - if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
>> + if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
>
> The name is just "dmabuf"
I think it wants the subtest name or at least that worked for me.
Antonio
> -Chris
>
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling
2019-08-20 15:04 ` Antonio Argenziano
@ 2019-08-23 9:25 ` Petri Latvala
0 siblings, 0 replies; 9+ messages in thread
From: Petri Latvala @ 2019-08-23 9:25 UTC (permalink / raw)
To: Antonio Argenziano; +Cc: igt-dev
On Tue, Aug 20, 2019 at 08:04:58AM -0700, Antonio Argenziano wrote:
>
>
> On 20/08/19 01:51, Chris Wilson wrote:
> > Quoting Antonio Argenziano (2019-08-19 23:31:37)
> > > dmabuf_selftests has been recently added to the test list but not added
> > > to the special handling in igt_command_line.sh and therefore build
> > > testing would fail.
> > >
> > > Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
> > > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > > ---
> > > tests/igt_command_line.sh | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/tests/igt_command_line.sh b/tests/igt_command_line.sh
> > > index 92643c4d..eaec1b4f 100755
> > > --- a/tests/igt_command_line.sh
> > > +++ b/tests/igt_command_line.sh
> > > @@ -90,7 +90,7 @@ check_test ()
> > > # Subtest enumeration of kernel selftest launchers depends
> > > # on the running kernel. If selftests are not enabled,
> > > # they will output nothing and exit with 0.
> > > - if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" ]; then
> > > + if [ "$testname" != "i915_selftest" -a "$testname" != "drm_mm" -a "$testname" != "kms_selftest" -a "$testname" != "dmabuf_selftests"]; then
> >
> > The name is just "dmabuf"
>
> I think it wants the subtest name or at least that worked for me.
It "worked" because you wrote
"dmabuf_selftests"]
^^^^ missing a space.
--
Petri Latvala
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2019-08-23 9:26 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-19 22:31 [igt-dev] [PATCH i-g-t] tests/igt_command_line.sh: Add new selftest for special handling Antonio Argenziano
2019-08-19 23:37 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-08-20 8:32 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
2019-08-20 9:18 ` Petri Latvala
2019-08-20 8:51 ` Chris Wilson
2019-08-20 15:04 ` Antonio Argenziano
2019-08-23 9:25 ` Petri Latvala
2019-08-20 9:16 ` Petri Latvala
2019-08-20 11:36 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox