* [igt-dev] [PATCH] igt: Markup more tests that require INTEL
@ 2018-07-20 17:02 Gwan-gyeong Mun
2018-07-20 19:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Gwan-gyeong Mun @ 2018-07-20 17:02 UTC (permalink / raw)
To: igt-dev; +Cc: martin.peres
Signed-off-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
tests/drv_module_reload.c | 7 ++++++-
tests/kms_atomic.c | 4 ++++
tests/kms_flip.c | 4 +++-
tests/kms_plane_lowres.c | 1 +
tests/kms_vblank.c | 4 +++-
5 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/tests/drv_module_reload.c b/tests/drv_module_reload.c
index 3046d822..79e45172 100644
--- a/tests/drv_module_reload.c
+++ b/tests/drv_module_reload.c
@@ -305,8 +305,13 @@ igt_main
{
int err;
- igt_fixture
+ igt_fixture {
+ int fd;
+ fd = __drm_open_driver(DRIVER_INTEL);
+ igt_require_intel(fd);
+ close(fd);
hda_dynamic_debug(true);
+ }
igt_subtest("basic-reload") {
if ((err = reload(NULL)))
diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index ac02baf0..b1aa8a0c 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -895,18 +895,21 @@ igt_main
igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
igt_require(overlay);
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_overlay(pipe_obj, output, overlay);
}
igt_subtest("plane_primary_legacy") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_primary(pipe_obj, primary, &fb);
}
igt_subtest("test_only") {
+ igt_require_intel(display.drm_fd);
atomic_clear(&display, pipe, primary, output);
test_only(pipe_obj, primary, output);
@@ -922,6 +925,7 @@ igt_main
}
igt_subtest("plane_invalid_params") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_invalid_params(pipe_obj, output, primary, &fb);
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 4dcb0691..03173173 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -771,8 +771,10 @@ static unsigned int run_test_step(struct test_output *o)
igt_print_activity();
memset(&hang, 0, sizeof(hang));
- if (do_flip && (o->flags & TEST_HANG))
+ if (do_flip && (o->flags & TEST_HANG)) {
+ igt_require_intel(drm_fd);
hang = hang_gpu(drm_fd);
+ }
/* try to make sure we can issue two flips during the same frame */
if (do_flip && (o->flags & TEST_EBUSY)) {
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index d1e4b3ca..d2c0b0b2 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -270,6 +270,7 @@ run_tests_for_pipe(data_t *data, enum pipe pipe)
igt_skip_on(pipe >= data->display.n_pipes);
igt_display_require_output_on_pipe(&data->display, pipe);
+ igt_require_intel(data->drm_fd);
}
igt_subtest_f("pipe-%s-tiling-none",
diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c
index 508c0fa0..46072e85 100644
--- a/tests/kms_vblank.c
+++ b/tests/kms_vblank.c
@@ -127,8 +127,10 @@ static void run_test(data_t *data, void (*testfunc)(data_t *, int, int))
igt_subtest_name(), kmstest_pipe_name(data->pipe),
igt_output_name(output));
- if (!(data->flags & NOHANG))
+ if (!(data->flags & NOHANG)) {
+ igt_require_intel(fd);
hang = igt_hang_ring(fd, I915_EXEC_DEFAULT);
+ }
if (data->flags & BUSY) {
union drm_wait_vblank vbl;
--
2.18.0
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki
Business Identity Code: 0357606 - 4
Domiciled in Helsinki
This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
@ 2018-07-20 19:59 ` Patchwork
2018-07-24 12:26 ` [igt-dev] [PATCH] " Gwan-gyeong Mun
` (6 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-07-20 19:59 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4521 -> IGTPW_1617 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/1/mbox/
== Known issues ==
Here are the changes found in IGTPW_1617 that come from known issues:
=== IGT changes ===
==== Possible fixes ====
igt@debugfs_test@read_all_entries:
fi-snb-2520m: INCOMPLETE (fdo#103713) -> PASS
igt@prime_vgem@basic-fence-flip:
fi-ilk-650: FAIL (fdo#104008) -> PASS
fdo#103713 https://bugs.freedesktop.org/show_bug.cgi?id=103713
fdo#104008 https://bugs.freedesktop.org/show_bug.cgi?id=104008
== Participating hosts (47 -> 42) ==
Missing (5): fi-ctg-p8600 fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u
== Build changes ==
* IGT: IGT_4570 -> IGTPW_1617
CI_DRM_4521: a4ebbd84c682fd30edbde6ac0e48d150d4c5c066 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1617: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1617/
IGT_4570: 65cdccdc7bcbb791d791aeeeecb784a382110a3c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1617/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH] igt: Markup more tests that require INTEL
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
2018-07-20 19:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-07-24 12:26 ` Gwan-gyeong Mun
2018-07-24 12:33 ` Chris Wilson
2018-07-24 14:31 ` [igt-dev] [i-g-t,v2] " Gwan-gyeong Mun
2018-07-24 13:15 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev2) Patchwork
` (5 subsequent siblings)
7 siblings, 2 replies; 11+ messages in thread
From: Gwan-gyeong Mun @ 2018-07-24 12:26 UTC (permalink / raw)
To: igt-dev; +Cc: martin.peres
Signed-off-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
tests/drv_module_reload.c | 7 ++++++-
tests/kms_atomic.c | 4 ++++
tests/kms_flip.c | 4 +++-
tests/kms_plane_lowres.c | 1 +
tests/kms_vblank.c | 4 +++-
5 files changed, 17 insertions(+), 3 deletions(-)
diff --git a/tests/drv_module_reload.c b/tests/drv_module_reload.c
index 3046d822..79e45172 100644
--- a/tests/drv_module_reload.c
+++ b/tests/drv_module_reload.c
@@ -305,8 +305,13 @@ igt_main
{
int err;
- igt_fixture
+ igt_fixture {
+ int fd;
+ fd = __drm_open_driver(DRIVER_INTEL);
+ igt_require_intel(fd);
+ close(fd);
hda_dynamic_debug(true);
+ }
igt_subtest("basic-reload") {
if ((err = reload(NULL)))
diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index ac02baf0..b1aa8a0c 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -895,18 +895,21 @@ igt_main
igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
igt_require(overlay);
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_overlay(pipe_obj, output, overlay);
}
igt_subtest("plane_primary_legacy") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_primary(pipe_obj, primary, &fb);
}
igt_subtest("test_only") {
+ igt_require_intel(display.drm_fd);
atomic_clear(&display, pipe, primary, output);
test_only(pipe_obj, primary, output);
@@ -922,6 +925,7 @@ igt_main
}
igt_subtest("plane_invalid_params") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_invalid_params(pipe_obj, output, primary, &fb);
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 4dcb0691..03173173 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -771,8 +771,10 @@ static unsigned int run_test_step(struct test_output *o)
igt_print_activity();
memset(&hang, 0, sizeof(hang));
- if (do_flip && (o->flags & TEST_HANG))
+ if (do_flip && (o->flags & TEST_HANG)) {
+ igt_require_intel(drm_fd);
hang = hang_gpu(drm_fd);
+ }
/* try to make sure we can issue two flips during the same frame */
if (do_flip && (o->flags & TEST_EBUSY)) {
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index d1e4b3ca..d2c0b0b2 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -270,6 +270,7 @@ run_tests_for_pipe(data_t *data, enum pipe pipe)
igt_skip_on(pipe >= data->display.n_pipes);
igt_display_require_output_on_pipe(&data->display, pipe);
+ igt_require_intel(data->drm_fd);
}
igt_subtest_f("pipe-%s-tiling-none",
diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c
index 508c0fa0..46072e85 100644
--- a/tests/kms_vblank.c
+++ b/tests/kms_vblank.c
@@ -127,8 +127,10 @@ static void run_test(data_t *data, void (*testfunc)(data_t *, int, int))
igt_subtest_name(), kmstest_pipe_name(data->pipe),
igt_output_name(output));
- if (!(data->flags & NOHANG))
+ if (!(data->flags & NOHANG)) {
+ igt_require_intel(fd);
hang = igt_hang_ring(fd, I915_EXEC_DEFAULT);
+ }
if (data->flags & BUSY) {
union drm_wait_vblank vbl;
--
2.18.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH] igt: Markup more tests that require INTEL
2018-07-24 12:26 ` [igt-dev] [PATCH] " Gwan-gyeong Mun
@ 2018-07-24 12:33 ` Chris Wilson
2018-07-24 14:31 ` [igt-dev] [i-g-t,v2] " Gwan-gyeong Mun
1 sibling, 0 replies; 11+ messages in thread
From: Chris Wilson @ 2018-07-24 12:33 UTC (permalink / raw)
To: Gwan-gyeong Mun, igt-dev; +Cc: martin.peres
Quoting Gwan-gyeong Mun (2018-07-24 13:26:53)
> Signed-off-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
> ---
> tests/drv_module_reload.c | 7 ++++++-
drv_module_reload on the whole should not require intel.
Some particular tests should skip if the module doesn't have the right
modparam, but if it does it should conform.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev2)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
2018-07-20 19:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-24 12:26 ` [igt-dev] [PATCH] " Gwan-gyeong Mun
@ 2018-07-24 13:15 ` Patchwork
2018-07-24 15:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
` (4 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-07-24 13:15 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev2)
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4534 -> IGTPW_1637 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/2/mbox/
== Known issues ==
Here are the changes found in IGTPW_1637 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_module_reload@basic-no-display:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106725)
==== Possible fixes ====
igt@gem_exec_flush@basic-wb-ro-default:
fi-glk-j4005: DMESG-WARN (fdo#105719) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
fi-bxt-dsi: INCOMPLETE (fdo#103927) -> PASS
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105719 https://bugs.freedesktop.org/show_bug.cgi?id=105719
fdo#106725 https://bugs.freedesktop.org/show_bug.cgi?id=106725
== Participating hosts (52 -> 44) ==
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-skl-caroline fi-byt-clapper fi-bdw-samus
== Build changes ==
* IGT: IGT_4572 -> IGTPW_1637
CI_DRM_4534: a59bbda34ede6f5685fdc86b58f143bada751617 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1637/
IGT_4572: 9b064015df14506b23cd2d7245a73e1b1d16ee1f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1637/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [i-g-t,v2] igt: Markup more tests that require INTEL
2018-07-24 12:26 ` [igt-dev] [PATCH] " Gwan-gyeong Mun
2018-07-24 12:33 ` Chris Wilson
@ 2018-07-24 14:31 ` Gwan-gyeong Mun
1 sibling, 0 replies; 11+ messages in thread
From: Gwan-gyeong Mun @ 2018-07-24 14:31 UTC (permalink / raw)
To: igt-dev; +Cc: martin.peres
v2: Drop igt_require_intel() on drv_module_reload (Chris Wilson)
drv_module_reload on the whole should not require intel.
Some particular tests should skip if the module doesn't have the right
modparam, but if it does it should conform.
Signed-off-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
tests/kms_atomic.c | 4 ++++
tests/kms_flip.c | 4 +++-
tests/kms_plane_lowres.c | 1 +
tests/kms_vblank.c | 4 +++-
4 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/tests/kms_atomic.c b/tests/kms_atomic.c
index ac02baf0..b1aa8a0c 100644
--- a/tests/kms_atomic.c
+++ b/tests/kms_atomic.c
@@ -895,18 +895,21 @@ igt_main
igt_pipe_get_plane_type(pipe_obj, DRM_PLANE_TYPE_OVERLAY);
igt_require(overlay);
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_overlay(pipe_obj, output, overlay);
}
igt_subtest("plane_primary_legacy") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_primary(pipe_obj, primary, &fb);
}
igt_subtest("test_only") {
+ igt_require_intel(display.drm_fd);
atomic_clear(&display, pipe, primary, output);
test_only(pipe_obj, primary, output);
@@ -922,6 +925,7 @@ igt_main
}
igt_subtest("plane_invalid_params") {
+ igt_require_intel(display.drm_fd);
atomic_setup(&display, pipe, output, primary, &fb);
plane_invalid_params(pipe_obj, output, primary, &fb);
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 4dcb0691..03173173 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -771,8 +771,10 @@ static unsigned int run_test_step(struct test_output *o)
igt_print_activity();
memset(&hang, 0, sizeof(hang));
- if (do_flip && (o->flags & TEST_HANG))
+ if (do_flip && (o->flags & TEST_HANG)) {
+ igt_require_intel(drm_fd);
hang = hang_gpu(drm_fd);
+ }
/* try to make sure we can issue two flips during the same frame */
if (do_flip && (o->flags & TEST_EBUSY)) {
diff --git a/tests/kms_plane_lowres.c b/tests/kms_plane_lowres.c
index d1e4b3ca..d2c0b0b2 100644
--- a/tests/kms_plane_lowres.c
+++ b/tests/kms_plane_lowres.c
@@ -270,6 +270,7 @@ run_tests_for_pipe(data_t *data, enum pipe pipe)
igt_skip_on(pipe >= data->display.n_pipes);
igt_display_require_output_on_pipe(&data->display, pipe);
+ igt_require_intel(data->drm_fd);
}
igt_subtest_f("pipe-%s-tiling-none",
diff --git a/tests/kms_vblank.c b/tests/kms_vblank.c
index 508c0fa0..46072e85 100644
--- a/tests/kms_vblank.c
+++ b/tests/kms_vblank.c
@@ -127,8 +127,10 @@ static void run_test(data_t *data, void (*testfunc)(data_t *, int, int))
igt_subtest_name(), kmstest_pipe_name(data->pipe),
igt_output_name(output));
- if (!(data->flags & NOHANG))
+ if (!(data->flags & NOHANG)) {
+ igt_require_intel(fd);
hang = igt_hang_ring(fd, I915_EXEC_DEFAULT);
+ }
if (data->flags & BUSY) {
union drm_wait_vblank vbl;
--
2.18.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for igt: Markup more tests that require INTEL (rev2)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
` (2 preceding siblings ...)
2018-07-24 13:15 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev2) Patchwork
@ 2018-07-24 15:34 ` Patchwork
2018-07-24 15:36 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev3) Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-07-24 15:34 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev2)
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4572_full -> IGTPW_1637_full =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_1637_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1637_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/2/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1637_full:
=== IGT changes ===
==== Warnings ====
igt@gem_exec_schedule@deep-blt:
shard-apl: SKIP -> PASS +3
igt@gem_exec_schedule@deep-bsd1:
shard-kbl: SKIP -> PASS +2
igt@gem_exec_schedule@deep-render:
shard-glk: SKIP -> PASS +2
igt@pm_rc6_residency@rc6-accuracy:
shard-snb: PASS -> SKIP
== Known issues ==
Here are the changes found in IGTPW_1637_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_exec_flush@basic-wb-rw-default:
shard-snb: PASS -> INCOMPLETE (fdo#105411)
igt@kms_color@pipe-a-ctm-0-25:
shard-kbl: PASS -> DMESG-WARN (fdo#106247)
igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
shard-glk: NOTRUN -> FAIL (fdo#105454, fdo#106509)
igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
shard-glk: NOTRUN -> DMESG-WARN (fdo#105763, fdo#106538)
igt@kms_flip@plain-flip-fb-recreate:
shard-glk: PASS -> FAIL (fdo#100368)
igt@kms_setmode@basic:
shard-kbl: PASS -> FAIL (fdo#99912)
==== Possible fixes ====
igt@gem_ppgtt@blt-vs-render-ctx0:
shard-kbl: INCOMPLETE (fdo#106023, fdo#103665) -> PASS
igt@kms_flip@plain-flip-ts-check:
shard-glk: FAIL (fdo#100368) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
shard-kbl: INCOMPLETE (fdo#103665) -> PASS
igt@kms_universal_plane@cursor-fb-leak-pipe-a:
shard-apl: FAIL (fdo#107241) -> PASS
igt@perf_pmu@rc6-runtime-pm-long:
shard-kbl: FAIL (fdo#105010) -> PASS
fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#105010 https://bugs.freedesktop.org/show_bug.cgi?id=105010
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454
fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106247 https://bugs.freedesktop.org/show_bug.cgi?id=106247
fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509
fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538
fdo#107241 https://bugs.freedesktop.org/show_bug.cgi?id=107241
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4572 -> IGTPW_1637
* Linux: CI_DRM_4533 -> CI_DRM_4534
CI_DRM_4533: 712e7047cfc7a129df6d324f59cc5d4eb2879285 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4534: a59bbda34ede6f5685fdc86b58f143bada751617 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1637: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1637/
IGT_4572: 9b064015df14506b23cd2d7245a73e1b1d16ee1f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1637/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev3)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
` (3 preceding siblings ...)
2018-07-24 15:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2018-07-24 15:36 ` Patchwork
2018-07-24 19:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-07-24 15:36 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev3)
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4534 -> IGTPW_1642 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/3/mbox/
== Known issues ==
Here are the changes found in IGTPW_1642 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
fi-glk-j4005: PASS -> FAIL (fdo#106765)
igt@kms_flip@basic-flip-vs-modeset:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106000)
igt@kms_pipe_crc_basic@read-crc-pipe-b:
fi-glk-j4005: PASS -> DMESG-WARN (fdo#106097)
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
{fi-cfl-8109u}: PASS -> INCOMPLETE (fdo#106070)
==== Possible fixes ====
igt@gem_exec_flush@basic-wb-ro-default:
fi-glk-j4005: DMESG-WARN (fdo#105719) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
fi-bxt-dsi: INCOMPLETE (fdo#103927) -> PASS
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105719 https://bugs.freedesktop.org/show_bug.cgi?id=105719
fdo#106000 https://bugs.freedesktop.org/show_bug.cgi?id=106000
fdo#106070 https://bugs.freedesktop.org/show_bug.cgi?id=106070
fdo#106097 https://bugs.freedesktop.org/show_bug.cgi?id=106097
fdo#106765 https://bugs.freedesktop.org/show_bug.cgi?id=106765
== Participating hosts (52 -> 44) ==
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-skl-caroline fi-byt-clapper fi-bdw-samus
== Build changes ==
* IGT: IGT_4572 -> IGTPW_1642
CI_DRM_4534: a59bbda34ede6f5685fdc86b58f143bada751617 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1642: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1642/
IGT_4572: 9b064015df14506b23cd2d7245a73e1b1d16ee1f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1642/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for igt: Markup more tests that require INTEL (rev3)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
` (4 preceding siblings ...)
2018-07-24 15:36 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev3) Patchwork
@ 2018-07-24 19:01 ` Patchwork
2018-08-09 12:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2018-08-09 13:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-07-24 19:01 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev3)
URL : https://patchwork.freedesktop.org/series/46970/
State : failure
== Summary ==
= CI Bug Log - changes from IGT_4572_full -> IGTPW_1642_full =
== Summary - FAILURE ==
Serious unknown changes coming with IGTPW_1642_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1642_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/3/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1642_full:
=== IGT changes ===
==== Possible regressions ====
igt@gem_pwrite_pread@display-pwrite-blt-gtt_mmap-performance:
shard-snb: PASS -> DMESG-FAIL
==== Warnings ====
igt@gem_exec_schedule@deep-blt:
shard-apl: SKIP -> PASS +3
igt@gem_exec_schedule@deep-bsd1:
shard-kbl: SKIP -> PASS +2
igt@gem_exec_schedule@deep-render:
shard-glk: SKIP -> PASS +1
igt@gem_exec_store@basic-default:
shard-snb: PASS -> SKIP +2
igt@gem_mocs_settings@mocs-rc6-vebox:
shard-kbl: PASS -> SKIP
== Known issues ==
Here are the changes found in IGTPW_1642_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_readwrite@write-bad-handle:
shard-snb: PASS -> INCOMPLETE (fdo#105411)
igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
shard-glk: NOTRUN -> FAIL (fdo#106509, fdo#105454)
igt@kms_flip@2x-flip-vs-expired-vblank:
shard-glk: PASS -> FAIL (fdo#105189)
igt@kms_flip@flip-vs-expired-vblank-interruptible:
shard-glk: NOTRUN -> FAIL (fdo#105189)
igt@kms_flip@plain-flip-fb-recreate-interruptible:
shard-glk: NOTRUN -> FAIL (fdo#100368)
shard-hsw: PASS -> FAIL (fdo#100368)
igt@kms_setmode@basic:
shard-kbl: PASS -> FAIL (fdo#99912)
==== Possible fixes ====
igt@gem_ppgtt@blt-vs-render-ctxn:
shard-kbl: INCOMPLETE (fdo#103665, fdo#106023) -> PASS +1
igt@kms_flip@plain-flip-ts-check:
shard-glk: FAIL (fdo#100368) -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
shard-kbl: INCOMPLETE (fdo#103665) -> PASS
igt@kms_rotation_crc@sprite-rotation-180:
shard-snb: FAIL (fdo#103925) -> PASS +1
igt@kms_setmode@basic:
shard-apl: FAIL (fdo#99912) -> PASS
igt@kms_universal_plane@cursor-fb-leak-pipe-a:
shard-apl: FAIL (fdo#107241) -> PASS
igt@perf_pmu@rc6-runtime-pm-long:
shard-kbl: FAIL (fdo#105010) -> PASS
igt@testdisplay:
shard-glk: INCOMPLETE (fdo#107093, k.org#198133, fdo#103359) -> PASS
fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
fdo#105010 https://bugs.freedesktop.org/show_bug.cgi?id=105010
fdo#105189 https://bugs.freedesktop.org/show_bug.cgi?id=105189
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105454 https://bugs.freedesktop.org/show_bug.cgi?id=105454
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106509 https://bugs.freedesktop.org/show_bug.cgi?id=106509
fdo#107093 https://bugs.freedesktop.org/show_bug.cgi?id=107093
fdo#107241 https://bugs.freedesktop.org/show_bug.cgi?id=107241
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4572 -> IGTPW_1642
* Linux: CI_DRM_4533 -> CI_DRM_4534
CI_DRM_4533: 712e7047cfc7a129df6d324f59cc5d4eb2879285 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4534: a59bbda34ede6f5685fdc86b58f143bada751617 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1642: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1642/
IGT_4572: 9b064015df14506b23cd2d7245a73e1b1d16ee1f @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1642/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev3)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
` (5 preceding siblings ...)
2018-07-24 19:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2018-08-09 12:50 ` Patchwork
2018-08-09 13:37 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-08-09 12:50 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev3)
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from CI_DRM_4636 -> IGTPW_1697 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/3/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1697:
=== IGT changes ===
==== Possible regressions ====
igt@gem_exec_suspend@basic-s3:
{fi-kbl-soraka}: NOTRUN -> INCOMPLETE
== Known issues ==
Here are the changes found in IGTPW_1697 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@drv_module_reload@basic-reload-inject:
fi-hsw-4770r: PASS -> DMESG-WARN (fdo#107425)
igt@drv_selftest@live_hangcheck:
{fi-icl-u}: NOTRUN -> INCOMPLETE (fdo#107399)
igt@drv_selftest@live_requests:
{fi-bsw-kefka}: PASS -> INCOMPLETE (fdo#105876)
igt@drv_selftest@live_workarounds:
{fi-bsw-kefka}: PASS -> DMESG-FAIL (fdo#107292)
igt@kms_pipe_crc_basic@read-crc-pipe-a:
{fi-byt-clapper}: PASS -> FAIL (fdo#107362)
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c:
{fi-icl-u}: NOTRUN -> DMESG-WARN (fdo#107382) +4
{igt@kms_psr@primary_page_flip}:
{fi-icl-u}: NOTRUN -> FAIL (fdo#107383) +3
==== Warnings ====
{igt@kms_psr@primary_page_flip}:
fi-cnl-psr: DMESG-WARN (fdo#107372) -> DMESG-FAIL (fdo#107372)
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#105876 https://bugs.freedesktop.org/show_bug.cgi?id=105876
fdo#107292 https://bugs.freedesktop.org/show_bug.cgi?id=107292
fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
fdo#107372 https://bugs.freedesktop.org/show_bug.cgi?id=107372
fdo#107382 https://bugs.freedesktop.org/show_bug.cgi?id=107382
fdo#107383 https://bugs.freedesktop.org/show_bug.cgi?id=107383
fdo#107399 https://bugs.freedesktop.org/show_bug.cgi?id=107399
fdo#107425 https://bugs.freedesktop.org/show_bug.cgi?id=107425
== Participating hosts (50 -> 49) ==
Additional (3): fi-kbl-soraka fi-kbl-7560u fi-icl-u
Missing (4): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-hsw-4200u
== Build changes ==
* IGT: IGT_4590 -> IGTPW_1697
CI_DRM_4636: 084bb2fb549650b6da80976c9bc594779ce342b4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1697: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1697/
IGT_4590: e6ddaca7a8ea9d3d27f0ecaa36b357cc02e2df3b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1697/issues.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for igt: Markup more tests that require INTEL (rev3)
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
` (6 preceding siblings ...)
2018-08-09 12:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2018-08-09 13:37 ` Patchwork
7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-08-09 13:37 UTC (permalink / raw)
To: Gwan-gyeong Mun; +Cc: igt-dev
== Series Details ==
Series: igt: Markup more tests that require INTEL (rev3)
URL : https://patchwork.freedesktop.org/series/46970/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4590_full -> IGTPW_1697_full =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_1697_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_1697_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/46970/revisions/3/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_1697_full:
=== IGT changes ===
==== Warnings ====
igt@perf_pmu@rc6-runtime-pm-long:
shard-glk: PASS -> SKIP
== Known issues ==
Here are the changes found in IGTPW_1697_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_busy@basic-hang-default:
shard-snb: PASS -> INCOMPLETE (fdo#105411)
igt@gem_softpin@noreloc-s3:
shard-kbl: PASS -> INCOMPLETE (fdo#103665)
igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
shard-snb: PASS -> FAIL (fdo#103166)
igt@kms_setmode@basic:
shard-apl: PASS -> FAIL (fdo#99912)
igt@pm_rps@reset:
shard-apl: PASS -> FAIL (fdo#102250)
==== Possible fixes ====
igt@gem_workarounds@suspend-resume:
shard-kbl: INCOMPLETE (fdo#103665) -> PASS
igt@kms_vblank@pipe-c-ts-continuation-modeset-rpm:
shard-hsw: FAIL (fdo#106539) -> PASS +7
igt@pm_rpm@cursor-dpms:
shard-glk: WARN -> PASS
igt@pm_rpm@modeset-lpsp-stress:
shard-hsw: FAIL (fdo#106539) -> SKIP
fdo#102250 https://bugs.freedesktop.org/show_bug.cgi?id=102250
fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#106539 https://bugs.freedesktop.org/show_bug.cgi?id=106539
fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912
== Participating hosts (5 -> 5) ==
No changes in participating hosts
== Build changes ==
* IGT: IGT_4590 -> IGTPW_1697
* Linux: CI_DRM_4635 -> CI_DRM_4636
CI_DRM_4635: a9f34f7e3bab765e2b1320a1b154a76be38602a7 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_4636: 084bb2fb549650b6da80976c9bc594779ce342b4 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_1697: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1697/
IGT_4590: e6ddaca7a8ea9d3d27f0ecaa36b357cc02e2df3b @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1697/shards.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2018-08-09 13:37 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-20 17:02 [igt-dev] [PATCH] igt: Markup more tests that require INTEL Gwan-gyeong Mun
2018-07-20 19:59 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-07-24 12:26 ` [igt-dev] [PATCH] " Gwan-gyeong Mun
2018-07-24 12:33 ` Chris Wilson
2018-07-24 14:31 ` [igt-dev] [i-g-t,v2] " Gwan-gyeong Mun
2018-07-24 13:15 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev2) Patchwork
2018-07-24 15:34 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2018-07-24 15:36 ` [igt-dev] ✓ Fi.CI.BAT: success for igt: Markup more tests that require INTEL (rev3) Patchwork
2018-07-24 19:01 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2018-08-09 12:50 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2018-08-09 13:37 ` [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;
as well as URLs for NNTP newsgroup(s).