All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block
@ 2019-07-31 12:43 Simon Ser
  2019-07-31 12:43 ` [igt-dev] [PATCH i-g-t 2/2] docs/chamelium: document port auto-discovery Simon Ser
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Simon Ser @ 2019-07-31 12:43 UTC (permalink / raw)
  To: igt-dev

This makes it easier to tell the code block apart from the rest of the
document.

Signed-off-by: Simon Ser <simon.ser@intel.com>
---
 docs/chamelium.txt | 78 +++++++++++++++++++++++-----------------------
 1 file changed, 39 insertions(+), 39 deletions(-)

diff --git a/docs/chamelium.txt b/docs/chamelium.txt
index aaa0646e9d1e..30d22c66c291 100644
--- a/docs/chamelium.txt
+++ b/docs/chamelium.txt
@@ -79,45 +79,45 @@ In order to run tests using the Chamelium, a valid configuration file must be
 present. It must contain Chamelium-specific keys as shown with the following
 example:

-# The common configuration section follows.
-[Common]
-# The path to dump frames that fail comparison checks
-FrameDumpPath=/root/
-
-# The following section is used for configuring the Device Under Test.
-# It is not mandatory and allows overriding default values.
-[DUT]
-SuspendResumeDelay=15
-
-[Chamelium]
-# The URL used for connecting to the Chamelium's RPC server
-URL=http://192.168.1.2:9992
-
-# The rest of the sections are used for defining connector mappings.
-# This is required so any tests using the Chamelium know which connector
-# on the test machine should be connected to each Chamelium port.
-#
-# In the event that any of these mappings are specified incorrectly,
-# any hotplugging tests for the incorrect connector mapping will fail.
-
-# The name of the DRM connector
-# The DP-1 of [Chamelium:DP-1] and the HDMI-A-1 of [Chamelium:HDMI-A-1] indicate
-# "connector info type" of /sys/kernel/debug/dri/0/i915_display_info.
-[Chamelium:DP-1]
-# The ChameliumPortID indicates physical port (device) id of a Chamelium Board.
-# A Chamelium daemon program defines these port ids as
-# DP1 (located next to the HDMI port) = 1
-# DP2 (located next to the VGA connector) = 2
-# HDMI = 3 and VGA = 4
-# The port ids are defined at:
-# https://chromium.googlesource.com/chromiumos/platform/chameleon/+/master/chameleond/utils/ids.py
-ChameliumPortID=1
-
-[Chamelium:HDMI-A-2]
-ChameliumPortID=3
-
-[Chamelium:VGA-1]
-ChameliumPortID=4
+    # The common configuration section follows.
+    [Common]
+    # The path to dump frames that fail comparison checks
+    FrameDumpPath=/root/
+
+    # The following section is used for configuring the Device Under Test.
+    # It is not mandatory and allows overriding default values.
+    [DUT]
+    SuspendResumeDelay=15
+
+    [Chamelium]
+    # The URL used for connecting to the Chamelium's RPC server
+    URL=http://192.168.1.2:9992
+
+    # The rest of the sections are used for defining connector mappings.
+    # This is required so any tests using the Chamelium know which connector
+    # on the test machine should be connected to each Chamelium port.
+    #
+    # In the event that any of these mappings are specified incorrectly,
+    # any hotplugging tests for the incorrect connector mapping will fail.
+
+    # The name of the DRM connector
+    # The DP-1 of [Chamelium:DP-1] and the HDMI-A-1 of [Chamelium:HDMI-A-1] indicate
+    # "connector info type" of /sys/kernel/debug/dri/0/i915_display_info.
+    [Chamelium:DP-1]
+    # The ChameliumPortID indicates physical port (device) id of a Chamelium Board.
+    # A Chamelium daemon program defines these port ids as
+    # DP1 (located next to the HDMI port) = 1
+    # DP2 (located next to the VGA connector) = 2
+    # HDMI = 3 and VGA = 4
+    # The port ids are defined at:
+    # https://chromium.googlesource.com/chromiumos/platform/chameleon/+/master/chameleond/utils/ids.py
+    ChameliumPortID=1
+
+    [Chamelium:HDMI-A-2]
+    ChameliumPortID=3
+
+    [Chamelium:VGA-1]
+    ChameliumPortID=4

 Running the Chamelium With IGT
 ------------------------------
--
2.22.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [igt-dev] [PATCH i-g-t 2/2] docs/chamelium: document port auto-discovery
  2019-07-31 12:43 [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block Simon Ser
@ 2019-07-31 12:43 ` Simon Ser
  2019-07-31 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block Patchwork
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Ser @ 2019-07-31 12:43 UTC (permalink / raw)
  To: igt-dev

Explicit Chamelium port mappings are now optional.

Signed-off-by: Simon Ser <simon.ser@intel.com>
---
 docs/chamelium.txt | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/docs/chamelium.txt b/docs/chamelium.txt
index 30d22c66c291..32c296f7ea3c 100644
--- a/docs/chamelium.txt
+++ b/docs/chamelium.txt
@@ -77,7 +77,7 @@ IGT's behavior can be configured through a configuration file.
 By default, this file is expected to exist in ~/.igtrc
 In order to run tests using the Chamelium, a valid configuration file must be
 present. It must contain Chamelium-specific keys as shown with the following
-example:
+example (only Chamelium.URL is mandatory):
 
     # The common configuration section follows.
     [Common]
@@ -93,12 +93,8 @@ example:
     # The URL used for connecting to the Chamelium's RPC server
     URL=http://192.168.1.2:9992
 
-    # The rest of the sections are used for defining connector mappings.
-    # This is required so any tests using the Chamelium know which connector
-    # on the test machine should be connected to each Chamelium port.
-    #
-    # In the event that any of these mappings are specified incorrectly,
-    # any hotplugging tests for the incorrect connector mapping will fail.
+    # The rest of the sections are used for defining connector mappings. This
+    # is optional, the mappings will be discovered automatically.
 
     # The name of the DRM connector
     # The DP-1 of [Chamelium:DP-1] and the HDMI-A-1 of [Chamelium:HDMI-A-1] indicate
-- 
2.22.0

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block
  2019-07-31 12:43 [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block Simon Ser
  2019-07-31 12:43 ` [igt-dev] [PATCH i-g-t 2/2] docs/chamelium: document port auto-discovery Simon Ser
@ 2019-07-31 13:13 ` Patchwork
  2019-08-01 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  2019-08-15 10:09 ` [igt-dev] [PATCH i-g-t 1/2] " Arkadiusz Hiler
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-07-31 13:13 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block
URL   : https://patchwork.freedesktop.org/series/64496/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6590 -> IGTPW_3312
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/64496/revisions/1/mbox/

Known issues
------------

  Here are the changes found in IGTPW_3312 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_create@basic:
    - fi-icl-u3:          [PASS][1] -> [DMESG-WARN][2] ([fdo#107724])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-icl-u3/igt@gem_ctx_create@basic.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-icl-u3/igt@gem_ctx_create@basic.html

  * igt@kms_busy@basic-flip-a:
    - fi-kbl-7567u:       [PASS][3] -> [SKIP][4] ([fdo#109271] / [fdo#109278]) +2 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-kbl-7567u/igt@kms_busy@basic-flip-a.html

  
#### Possible fixes ####

  * {igt@gem_ctx_switch@rcs0}:
    - fi-cml-u:           [INCOMPLETE][5] ([fdo#110566]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-cml-u/igt@gem_ctx_switch@rcs0.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-cml-u/igt@gem_ctx_switch@rcs0.html

  * igt@kms_chamelium@common-hpd-after-suspend:
    - fi-kbl-7567u:       [WARN][7] ([fdo#109380]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-kbl-7567u/igt@kms_chamelium@common-hpd-after-suspend.html

  * igt@kms_frontbuffer_tracking@basic:
    - {fi-icl-u4}:        [FAIL][9] ([fdo#103167]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-icl-u4/igt@kms_frontbuffer_tracking@basic.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-c:
    - fi-kbl-7567u:       [SKIP][11] ([fdo#109271]) -> [PASS][12] +23 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/fi-kbl-7567u/igt@kms_pipe_crc_basic@read-crc-pipe-c.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#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109380]: https://bugs.freedesktop.org/show_bug.cgi?id=109380
  [fdo#110566]: https://bugs.freedesktop.org/show_bug.cgi?id=110566


Participating hosts (52 -> 45)
------------------------------

  Missing    (7): fi-kbl-soraka fi-byt-squawks fi-bsw-cyan fi-pnv-d510 fi-icl-y fi-byt-clapper fi-bdw-samus 


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_5116 -> IGTPW_3312

  CI-20190529: 20190529
  CI_DRM_6590: e0832ec0e1c7fc0c8f487bb3ff9c5d3011c127bd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3312: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/
  IGT_5116: d2e6dd2f789596da5bd06efc2e9448e3160583b6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block
  2019-07-31 12:43 [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block Simon Ser
  2019-07-31 12:43 ` [igt-dev] [PATCH i-g-t 2/2] docs/chamelium: document port auto-discovery Simon Ser
  2019-07-31 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block Patchwork
@ 2019-08-01 23:34 ` Patchwork
  2019-08-15 10:09 ` [igt-dev] [PATCH i-g-t 1/2] " Arkadiusz Hiler
  3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-08-01 23:34 UTC (permalink / raw)
  To: Ser, Simon; +Cc: igt-dev

== Series Details ==

Series: series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block
URL   : https://patchwork.freedesktop.org/series/64496/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6590_full -> IGTPW_3312_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/64496/revisions/1/mbox/

Known issues
------------

  Here are the changes found in IGTPW_3312_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_suspend@fence-restore-untiled:
    - shard-apl:          ([PASS][1], [PASS][2]) -> ([DMESG-WARN][3], [PASS][4]) ([fdo#108566]) +3 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl8/igt@i915_suspend@fence-restore-untiled.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl7/igt@i915_suspend@fence-restore-untiled.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl5/igt@i915_suspend@fence-restore-untiled.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl1/igt@i915_suspend@fence-restore-untiled.html

  * igt@i915_suspend@forcewake:
    - shard-kbl:          [PASS][5] -> ([DMESG-WARN][6], [PASS][7]) ([fdo#108566]) +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl4/igt@i915_suspend@forcewake.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl6/igt@i915_suspend@forcewake.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl3/igt@i915_suspend@forcewake.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [PASS][8] -> [DMESG-WARN][9] ([fdo#108566])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl1/igt@i915_suspend@sysfs-reader.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl8/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_legacy@cursor-vs-flip-legacy:
    - shard-hsw:          ([PASS][10], [PASS][11]) -> ([FAIL][12], [PASS][13]) ([fdo#103355])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw7/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw8/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw6/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw4/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html

  * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
    - shard-glk:          ([PASS][14], [PASS][15]) -> ([FAIL][16], [PASS][17]) ([fdo#105363])
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html

  * igt@kms_flip@flip-vs-suspend:
    - shard-hsw:          ([PASS][18], [PASS][19]) -> ([PASS][20], [INCOMPLETE][21]) ([fdo#103540]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw8/igt@kms_flip@flip-vs-suspend.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw7/igt@kms_flip@flip-vs-suspend.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw6/igt@kms_flip@flip-vs-suspend.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw4/igt@kms_flip@flip-vs-suspend.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [PASS][22] -> ([DMESG-WARN][23], [DMESG-WARN][24]) ([fdo#108566])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl5/igt@kms_flip@flip-vs-suspend-interruptible.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-iclb:         [PASS][25] -> [FAIL][26] ([fdo#103167]) +5 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_psr@psr2_cursor_plane_onoff:
    - shard-iclb:         [PASS][27] -> [SKIP][28] ([fdo#109441]) +2 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb8/igt@kms_psr@psr2_cursor_plane_onoff.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [PASS][29] -> ([FAIL][30], [FAIL][31]) ([fdo#99912])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl4/igt@kms_setmode@basic.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl4/igt@kms_setmode@basic.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-b-ts-continuation-suspend:
    - shard-apl:          [PASS][32] -> ([DMESG-WARN][33], [PASS][34]) ([fdo#108566])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl8/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl3/igt@kms_vblank@pipe-b-ts-continuation-suspend.html

  * igt@perf_pmu@rc6:
    - shard-kbl:          [PASS][35] -> [SKIP][36] ([fdo#109271])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl4/igt@perf_pmu@rc6.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl2/igt@perf_pmu@rc6.html

  
#### Possible fixes ####

  * {igt@gem_ctx_switch@queue-light}:
    - shard-iclb:         [INCOMPLETE][37] ([fdo#107713]) -> [PASS][38]
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb4/igt@gem_ctx_switch@queue-light.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb8/igt@gem_ctx_switch@queue-light.html

  * igt@gem_eio@in-flight-suspend:
    - shard-kbl:          [DMESG-WARN][39] ([fdo#108566]) -> [PASS][40] +4 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl7/igt@gem_eio@in-flight-suspend.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl2/igt@gem_eio@in-flight-suspend.html

  * igt@gem_tiled_swapping@non-threaded:
    - shard-glk:          ([DMESG-WARN][41], [PASS][42]) ([fdo#108686]) -> ([PASS][43], [PASS][44])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-glk3/igt@gem_tiled_swapping@non-threaded.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-glk7/igt@gem_tiled_swapping@non-threaded.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-glk9/igt@gem_tiled_swapping@non-threaded.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-glk7/igt@gem_tiled_swapping@non-threaded.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          ([PASS][45], [DMESG-WARN][46]) ([fdo#108566]) -> [PASS][47]
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl7/igt@gem_workarounds@suspend-resume-context.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl5/igt@gem_workarounds@suspend-resume-context.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl2/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_selftest@live_execlists:
    - shard-iclb:         [INCOMPLETE][48] ([fdo#107713] / [fdo#111115]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb3/igt@i915_selftest@live_execlists.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb1/igt@i915_selftest@live_execlists.html

  * igt@i915_selftest@live_hangcheck:
    - shard-iclb:         [DMESG-FAIL][50] ([fdo#111144]) -> [PASS][51]
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb3/igt@i915_selftest@live_hangcheck.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb1/igt@i915_selftest@live_hangcheck.html

  * igt@kms_busy@extended-pageflip-hang-newfb-render-b:
    - shard-apl:          [INCOMPLETE][52] ([fdo#103927]) -> ([PASS][53], [PASS][54])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl6/igt@kms_busy@extended-pageflip-hang-newfb-render-b.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl1/igt@kms_busy@extended-pageflip-hang-newfb-render-b.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl5/igt@kms_busy@extended-pageflip-hang-newfb-render-b.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][55] ([fdo#108566]) -> ([PASS][56], [PASS][57]) +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-hsw:          ([INCOMPLETE][58], [PASS][59]) ([fdo#103540]) -> ([PASS][60], [PASS][61])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw5/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-hsw8/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw1/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-hsw6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
    - shard-iclb:         [FAIL][62] ([fdo#103167]) -> [PASS][63] +3 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html

  * igt@kms_frontbuffer_tracking@fbc-suspend:
    - shard-apl:          ([DMESG-WARN][64], [PASS][65]) ([fdo#108566]) -> ([PASS][66], [PASS][67]) +1 similar issue
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl8/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl2/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl1/igt@kms_frontbuffer_tracking@fbc-suspend.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl5/igt@kms_frontbuffer_tracking@fbc-suspend.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
    - shard-iclb:         [INCOMPLETE][68] ([fdo#106978] / [fdo#107713]) -> [PASS][69]
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_plane_lowres@pipe-a-tiling-y:
    - shard-iclb:         [FAIL][70] ([fdo#103166]) -> [PASS][71]
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-y.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb2/igt@kms_plane_lowres@pipe-a-tiling-y.html

  * igt@kms_psr@psr2_cursor_render:
    - shard-iclb:         [SKIP][72] ([fdo#109441]) -> [PASS][73] +1 similar issue
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-iclb8/igt@kms_psr@psr2_cursor_render.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-iclb2/igt@kms_psr@psr2_cursor_render.html

  * igt@kms_setmode@basic:
    - shard-apl:          ([FAIL][74], [FAIL][75]) ([fdo#99912]) -> [PASS][76]
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl3/igt@kms_setmode@basic.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-apl5/igt@kms_setmode@basic.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-apl1/igt@kms_setmode@basic.html

  
#### Warnings ####

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [DMESG-WARN][77] ([fdo#108566]) -> ([PASS][78], [DMESG-WARN][79]) ([fdo#108566]) +1 similar issue
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6590/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl4/igt@gem_workarounds@suspend-resume-fd.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/shard-kbl6/igt@gem_workarounds@suspend-resume-fd.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355
  [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#106978]: https://bugs.freedesktop.org/show_bug.cgi?id=106978
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [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#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#111115]: https://bugs.freedesktop.org/show_bug.cgi?id=111115
  [fdo#111144]: https://bugs.freedesktop.org/show_bug.cgi?id=111144
  [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_5116 -> IGTPW_3312
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_6590: e0832ec0e1c7fc0c8f487bb3ff9c5d3011c127bd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3312: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3312/
  IGT_5116: d2e6dd2f789596da5bd06efc2e9448e3160583b6 @ 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_3312/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block
  2019-07-31 12:43 [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block Simon Ser
                   ` (2 preceding siblings ...)
  2019-08-01 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2019-08-15 10:09 ` Arkadiusz Hiler
  3 siblings, 0 replies; 5+ messages in thread
From: Arkadiusz Hiler @ 2019-08-15 10:09 UTC (permalink / raw)
  To: Simon Ser; +Cc: igt-dev

On Wed, Jul 31, 2019 at 03:43:40PM +0300, Simon Ser wrote:
> This makes it easier to tell the code block apart from the rest of the
> document.
> 
> Signed-off-by: Simon Ser <simon.ser@intel.com>

both patches are:
Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>

I strongly suggest moving this over to igt_chamelium.{h,c} so it's
available in generated docs... I know that `cat docs/chamelium.txt` wins
in the accesibility department, but it's the only exception right now.

-- 
Cheers,
Arek
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-08-15 10:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-31 12:43 [igt-dev] [PATCH i-g-t 1/2] docs/chamelium: indent .igtrc code block Simon Ser
2019-07-31 12:43 ` [igt-dev] [PATCH i-g-t 2/2] docs/chamelium: document port auto-discovery Simon Ser
2019-07-31 13:13 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] docs/chamelium: indent .igtrc code block Patchwork
2019-08-01 23:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-08-15 10:09 ` [igt-dev] [PATCH i-g-t 1/2] " Arkadiusz Hiler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.