All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests: Prefix pm_ tests with i915_ and move them to i915/
@ 2019-02-18 14:26 Arkadiusz Hiler
  2019-02-18 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2019-02-18 18:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  0 siblings, 2 replies; 3+ messages in thread
From: Arkadiusz Hiler @ 2019-02-18 14:26 UTC (permalink / raw)
  To: igt-dev; +Cc: Petri Latvala

They are i915-specific, so they belong to the directory.
The (now) infix _pm_ is quite informative and worth keeping.

Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Ewelina Musial <ewelina.musial@intel.com>
Signed-off-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
---

Acks/rbs appreciated, but please let me push it, as I have to do
renaming in the cibuglog first :-)

 tests/Makefile.sources              | 24 ++++++++++++++++++------
 tests/{ => i915}/pm_backlight.c     |  0
 tests/{ => i915}/pm_lpsp.c          |  0
 tests/{ => i915}/pm_rc6_residency.c |  0
 tests/{ => i915}/pm_rpm.c           |  0
 tests/{ => i915}/pm_rps.c           |  0
 tests/{ => i915}/pm_sseu.c          |  0
 tests/meson.build                   | 13 +++++++------
 8 files changed, 25 insertions(+), 12 deletions(-)
 rename tests/{ => i915}/pm_backlight.c (100%)
 rename tests/{ => i915}/pm_lpsp.c (100%)
 rename tests/{ => i915}/pm_rc6_residency.c (100%)
 rename tests/{ => i915}/pm_rpm.c (100%)
 rename tests/{ => i915}/pm_rps.c (100%)
 rename tests/{ => i915}/pm_sseu.c (100%)

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index d2c4f9fe..f130b116 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -77,12 +77,6 @@ TESTS_progs = \
 	meta_test \
 	perf \
 	perf_pmu \
-	pm_backlight \
-	pm_lpsp \
-	pm_rc6_residency \
-	pm_rpm \
-	pm_rps \
-	pm_sseu \
 	prime_busy \
 	prime_mmap \
 	prime_mmap_coherency \
@@ -486,6 +480,24 @@ i915_missed_irq_SOURCES = i915/missed_irq.c
 TESTS_progs += i915_module_load
 i915_module_load_SOURCES = i915/module_load.c
 
+TESTS_progs += i915_pm_backlight
+i915_pm_backlight_SOURCES = i915/pm_backlight.c
+
+TESTS_progs += i915_pm_lpsp
+i915_pm_lpsp_SOURCES = i915/pm_lpsp.c
+
+TESTS_progs += i915_pm_rc6_residency
+i915_pm_rc6_residency_SOURCES = i915/pm_rc6_residency.c
+
+TESTS_progs += i915_pm_rpm
+i915_pm_rpm_SOURCES = i915/pm_rpm.c
+
+TESTS_progs += i915_pm_rps
+i915_pm_rps_SOURCES = i915/pm_rps.c
+
+TESTS_progs += i915_pm_sseu
+i915_pm_sseu_SOURCES = i915/pm_sseu.c
+
 TESTS_progs += i915_query
 i915_query_SOURCES = i915/query.c
 
diff --git a/tests/pm_backlight.c b/tests/i915/pm_backlight.c
similarity index 100%
rename from tests/pm_backlight.c
rename to tests/i915/pm_backlight.c
diff --git a/tests/pm_lpsp.c b/tests/i915/pm_lpsp.c
similarity index 100%
rename from tests/pm_lpsp.c
rename to tests/i915/pm_lpsp.c
diff --git a/tests/pm_rc6_residency.c b/tests/i915/pm_rc6_residency.c
similarity index 100%
rename from tests/pm_rc6_residency.c
rename to tests/i915/pm_rc6_residency.c
diff --git a/tests/pm_rpm.c b/tests/i915/pm_rpm.c
similarity index 100%
rename from tests/pm_rpm.c
rename to tests/i915/pm_rpm.c
diff --git a/tests/pm_rps.c b/tests/i915/pm_rps.c
similarity index 100%
rename from tests/pm_rps.c
rename to tests/i915/pm_rps.c
diff --git a/tests/pm_sseu.c b/tests/i915/pm_sseu.c
similarity index 100%
rename from tests/pm_sseu.c
rename to tests/i915/pm_sseu.c
diff --git a/tests/meson.build b/tests/meson.build
index ec980651..3e3dd347 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -63,12 +63,6 @@ test_progs = [
 	'kms_vrr',
 	'meta_test',
 	'perf',
-	'pm_backlight',
-	'pm_lpsp',
-	'pm_rc6_residency',
-	'pm_rpm',
-	'pm_rps',
-	'pm_sseu',
 	'prime_busy',
 	'prime_mmap',
 	'prime_mmap_coherency',
@@ -96,12 +90,19 @@ test_progs = [
 	'vgem_slow',
 ]
 
+# will get prefixed with i915_
 i915_progs = [
 	'fb_tiling',
 	'getparams_basic',
 	'hangman',
 	'missed_irq',
 	'module_load',
+	'pm_backlight',
+	'pm_lpsp',
+	'pm_rc6_residency',
+	'pm_rpm',
+	'pm_rps',
+	'pm_sseu',
 	'query',
 	'selftest',
 	'suspend',
-- 
2.20.1

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests: Prefix pm_ tests with i915_ and move them to i915/
  2019-02-18 14:26 [igt-dev] [PATCH i-g-t] tests: Prefix pm_ tests with i915_ and move them to i915/ Arkadiusz Hiler
@ 2019-02-18 15:26 ` Patchwork
  2019-02-18 18:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-02-18 15:26 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: tests: Prefix pm_ tests with i915_ and move them to i915/
URL   : https://patchwork.freedesktop.org/series/56851/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5626 -> IGTPW_2439
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_module_load@reload:
    - fi-blb-e6850:       NOTRUN -> INCOMPLETE [fdo#107718]

  
#### Possible fixes ####

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       FAIL [fdo#109485] -> PASS

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - fi-blb-e6850:       INCOMPLETE [fdo#107718] -> PASS

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

  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [fdo#109485]: https://bugs.freedesktop.org/show_bug.cgi?id=109485


Participating hosts (47 -> 42)
------------------------------

  Additional (1): fi-bwr-2160 
  Missing    (6): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-bdw-samus 


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

    * IGT: IGT_4835 -> IGTPW_2439

  CI_DRM_5626: 40f27a9645a0cae536df6bc26e0d91766b47eb2f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2439: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2439/
  IGT_4835: 784b3c535cb066dafb05d52170851b9dfb262f98 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+++ 64 lines
--- 64 lines

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests: Prefix pm_ tests with i915_ and move them to i915/
  2019-02-18 14:26 [igt-dev] [PATCH i-g-t] tests: Prefix pm_ tests with i915_ and move them to i915/ Arkadiusz Hiler
  2019-02-18 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-02-18 18:32 ` Patchwork
  1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2019-02-18 18:32 UTC (permalink / raw)
  To: igt-dev

== Series Details ==

Series: tests: Prefix pm_ tests with i915_ and move them to i915/
URL   : https://patchwork.freedesktop.org/series/56851/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5626_full -> IGTPW_2439_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

New tests
---------

  New tests have been introduced between CI_DRM_5626_full and IGTPW_2439_full:

### New IGT tests (62) ###

  * igt@i915_pm_backlight@bad-brightness:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_backlight@basic-brightness:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_backlight@fade:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_backlight@fade_with_dpms:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_backlight@fade_with_suspend:
    - Statuses : 4 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_lpsp@edp-native:
    - Statuses : 4 skip(s)
    - Exec time: [0.0, 0.04] s

  * igt@i915_pm_lpsp@edp-panel-fitter:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.04] s

  * igt@i915_pm_lpsp@non-edp:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.12] s

  * igt@i915_pm_lpsp@screens-disabled:
    - Statuses : 1 pass(s) 4 skip(s)
    - Exec time: [0.0, 0.04] s

  * igt@i915_pm_rc6_residency@media-rc6-accuracy:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rc6_residency@rc6-accuracy:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 3.00] s

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.22] s

  * igt@i915_pm_rpm@basic-rte:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [1.23, 17.68] s

  * igt@i915_pm_rpm@cursor:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.22] s

  * igt@i915_pm_rpm@cursor-dpms:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.25] s

  * igt@i915_pm_rpm@debugfs-forcewake-user:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 10.53] s

  * igt@i915_pm_rpm@debugfs-read:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 4.76] s

  * igt@i915_pm_rpm@dpms-lpsp:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@dpms-mode-unset-lpsp:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.11] s

  * igt@i915_pm_rpm@dpms-non-lpsp:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.15] s

  * igt@i915_pm_rpm@drm-resources-equal:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.65] s

  * igt@i915_pm_rpm@fences:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.63] s

  * igt@i915_pm_rpm@fences-dpms:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.65] s

  * igt@i915_pm_rpm@gem-evict-pwrite:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.19] s

  * igt@i915_pm_rpm@gem-execbuf:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 8.36] s

  * igt@i915_pm_rpm@gem-execbuf-stress:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 40.08] s

  * igt@i915_pm_rpm@gem-execbuf-stress-extra-wait:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 90.22] s

  * igt@i915_pm_rpm@gem-execbuf-stress-pc8:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@gem-idle:
    - Statuses : 2 pass(s) 1 skip(s)
    - Exec time: [0.0, 5.03] s

  * igt@i915_pm_rpm@gem-mmap-cpu:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.75] s

  * igt@i915_pm_rpm@gem-mmap-gtt:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 2.02] s

  * igt@i915_pm_rpm@gem-pread:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.95] s

  * igt@i915_pm_rpm@i2c:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 1.14] s

  * igt@i915_pm_rpm@legacy-planes:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.65] s

  * igt@i915_pm_rpm@legacy-planes-dpms:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.86] s

  * igt@i915_pm_rpm@modeset-lpsp:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - Statuses : 5 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@modeset-non-lpsp:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.16] s

  * igt@i915_pm_rpm@modeset-non-lpsp-stress:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 6.53] s

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 4.94] s

  * igt@i915_pm_rpm@modeset-pc8-residency-stress:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rpm@modeset-stress-extra-wait:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 51.59] s

  * igt@i915_pm_rpm@module-reload:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 26.52] s

  * igt@i915_pm_rpm@pc8-residency:
    - Statuses : 5 skip(s)
    - Exec time: [0.0] s

  * igt@i915_pm_rpm@pm-caching:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.91] s

  * igt@i915_pm_rpm@pm-tiling:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 49.97] s

  * igt@i915_pm_rpm@reg-read-ioctl:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.22] s

  * igt@i915_pm_rpm@sysfs-read:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 0.00] s

  * igt@i915_pm_rpm@system-suspend:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.06] s

  * igt@i915_pm_rpm@system-suspend-devices:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 7.18] s

  * igt@i915_pm_rpm@system-suspend-execbuf:
    - Statuses : 3 pass(s) 1 skip(s)
    - Exec time: [0.0, 82.27] s

  * igt@i915_pm_rpm@system-suspend-modeset:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 3.52] s

  * igt@i915_pm_rpm@universal-planes:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 68.61] s

  * igt@i915_pm_rpm@universal-planes-dpms:
    - Statuses : 4 pass(s) 1 skip(s)
    - Exec time: [0.0, 6.81] s

  * igt@i915_pm_rps@basic-api:
    - Statuses : 3 pass(s)
    - Exec time: [0.00, 0.01] s

  * igt@i915_pm_rps@min-max-config-idle:
    - Statuses : 5 pass(s)
    - Exec time: [5.65, 11.52] s

  * igt@i915_pm_rps@min-max-config-loaded:
    - Statuses : 5 pass(s)
    - Exec time: [0.31, 0.34] s

  * igt@i915_pm_rps@reset:
    - Statuses : 4 pass(s)
    - Exec time: [3.52, 3.55] s

  * igt@i915_pm_rps@waitboost:
    - Statuses : 5 pass(s)
    - Exec time: [2.52, 2.54] s

  * igt@i915_pm_sseu@full-enable:
    - Statuses : 3 pass(s) 2 skip(s)
    - Exec time: [0.0, 0.01] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * {igt@i915_pm_backlight@bad-brightness} (NEW):
    - shard-glk:          NOTRUN -> {SKIP} [fdo#109271] +17

  * {igt@i915_pm_rpm@gem-execbuf-stress-extra-wait} (NEW):
    - shard-snb:          NOTRUN -> {SKIP} [fdo#109271] +56

  * {igt@i915_pm_rpm@gem-execbuf-stress-pc8} (NEW):
    - shard-hsw:          NOTRUN -> {SKIP} [fdo#109271] +16

  * {igt@i915_pm_rpm@modeset-lpsp-stress} (NEW):
    - shard-apl:          NOTRUN -> {SKIP} [fdo#109271] +17

  * {igt@i915_pm_rpm@modeset-lpsp-stress-no-wait} (NEW):
    - shard-kbl:          NOTRUN -> {SKIP} [fdo#109271] +16

  * igt@kms_cursor_crc@cursor-128x128-dpms:
    - shard-apl:          NOTRUN -> FAIL [fdo#103232]

  * igt@kms_cursor_crc@cursor-128x42-sliding:
    - shard-apl:          PASS -> FAIL [fdo#103232] +2

  * igt@kms_flip@flip-vs-expired-vblank-interruptible:
    - shard-kbl:          PASS -> FAIL [fdo#102887] / [fdo#105363]

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite:
    - shard-apl:          PASS -> FAIL [fdo#103167] +5

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen:
    - shard-kbl:          PASS -> FAIL [fdo#103167]

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
    - shard-glk:          PASS -> FAIL [fdo#103167] +8

  * igt@kms_plane@pixel-format-pipe-a-planes-source-clamping:
    - shard-apl:          PASS -> FAIL [fdo#108948]

  * igt@kms_plane@plane-position-covered-pipe-a-planes:
    - shard-apl:          PASS -> FAIL [fdo#103166]

  * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
    - shard-kbl:          NOTRUN -> FAIL [fdo#108145] / [fdo#108590]

  * igt@kms_plane_multiple@atomic-pipe-c-tiling-x:
    - shard-glk:          PASS -> FAIL [fdo#103166] +1

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-glk:          PASS -> DMESG-FAIL [fdo#105763] / [fdo#106538]

  * igt@kms_vblank@pipe-c-ts-continuation-modeset:
    - shard-kbl:          PASS -> FAIL [fdo#104894]

  * igt@kms_vblank@pipe-c-ts-continuation-suspend:
    - shard-apl:          PASS -> FAIL [fdo#104894] +3

  
#### Possible fixes ####

  * igt@gem_ctx_isolation@vcs0-s3:
    - shard-kbl:          INCOMPLETE [fdo#103665] -> PASS

  * igt@kms_cursor_crc@cursor-128x128-onscreen:
    - shard-apl:          FAIL [fdo#103232] -> PASS +8

  * igt@kms_cursor_crc@cursor-256x256-suspend:
    - shard-apl:          FAIL [fdo#103191] / [fdo#103232] -> PASS

  * igt@kms_cursor_crc@cursor-alpha-opaque:
    - shard-kbl:          FAIL [fdo#109350] -> PASS
    - shard-apl:          FAIL [fdo#109350] -> PASS
    - shard-glk:          FAIL [fdo#109350] -> PASS

  * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
    - shard-glk:          FAIL [fdo#105454] / [fdo#106509] -> PASS

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-apl:          FAIL [fdo#103167] -> PASS +1

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
    - shard-kbl:          FAIL [fdo#103167] -> PASS

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-glk:          FAIL [fdo#103167] -> PASS +4

  * igt@kms_plane@pixel-format-pipe-b-planes-source-clamping:
    - shard-glk:          FAIL [fdo#108948] -> PASS

  * igt@kms_plane_multiple@atomic-pipe-a-tiling-y:
    - shard-kbl:          FAIL [fdo#103166] -> PASS +1

  * igt@kms_plane_multiple@atomic-pipe-c-tiling-yf:
    - shard-apl:          FAIL [fdo#103166] -> PASS +5

  * igt@kms_rotation_crc@multiplane-rotation-cropping-top:
    - shard-kbl:          FAIL [fdo#109016] -> PASS

  * igt@kms_setmode@basic:
    - shard-apl:          FAIL [fdo#99912] -> PASS
    - shard-hsw:          FAIL [fdo#99912] -> PASS

  * igt@kms_universal_plane@universal-plane-pipe-c-functional:
    - shard-glk:          FAIL [fdo#103166] -> PASS +5

  * igt@kms_vblank@pipe-b-ts-continuation-modeset-hang:
    - shard-apl:          FAIL [fdo#104894] -> PASS +1

  * igt@testdisplay:
    - shard-apl:          INCOMPLETE [fdo#103927] -> PASS

  
#### Warnings ####

  * igt@kms_cursor_crc@cursor-64x64-suspend:
    - shard-apl:          FAIL [fdo#103191] / [fdo#103232] -> DMESG-WARN [fdo#108566]

  * igt@kms_rotation_crc@multiplane-rotation:
    - shard-kbl:          DMESG-FAIL [fdo#105763] -> FAIL [fdo#109016]

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

  [fdo#102887]: https://bugs.freedesktop.org/show_bug.cgi?id=102887
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [fdo#105454]: https://bugs.freedesktop.org/show_bug.cgi?id=105454
  [fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
  [fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509
  [fdo#106538]: https://bugs.freedesktop.org/show_bug.cgi?id=106538
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#108590]: https://bugs.freedesktop.org/show_bug.cgi?id=108590
  [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948
  [fdo#109016]: https://bugs.freedesktop.org/show_bug.cgi?id=109016
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109350]: https://bugs.freedesktop.org/show_bug.cgi?id=109350
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (7 -> 5)
------------------------------

  Missing    (2): shard-skl shard-iclb 


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

    * IGT: IGT_4835 -> IGTPW_2439
    * Piglit: piglit_4509 -> None

  CI_DRM_5626: 40f27a9645a0cae536df6bc26e0d91766b47eb2f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2439: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2439/
  IGT_4835: 784b3c535cb066dafb05d52170851b9dfb262f98 @ 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_2439/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-02-18 18:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-18 14:26 [igt-dev] [PATCH i-g-t] tests: Prefix pm_ tests with i915_ and move them to i915/ Arkadiusz Hiler
2019-02-18 15:26 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-02-18 18:32 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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.