public inbox for igt-dev@lists.freedesktop.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
@ 2019-04-03  0:20 José Roberto de Souza
  2019-04-03  0:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: José Roberto de Souza @ 2019-04-03  0:20 UTC (permalink / raw)
  To: igt-dev

i915_ring_missed_irq was removed from debugfs in kernel patch
789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
base of which i915_missed_irq was written, so removing this test for
good.

Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
---
 tests/Makefile.sources       |   3 -
 tests/i915/i915_missed_irq.c | 165 -----------------------------------
 tests/meson.build            |   1 -
 3 files changed, 169 deletions(-)
 delete mode 100644 tests/i915/i915_missed_irq.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 71ccf00a..9e4862c8 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -474,9 +474,6 @@ i915_getparams_basic_SOURCES = i915/i915_getparams_basic.c
 TESTS_progs += i915_hangman
 i915_hangman_SOURCES = i915/i915_hangman.c
 
-TESTS_progs += i915_missed_irq
-i915_missed_irq_SOURCES = i915/i915_missed_irq.c
-
 TESTS_progs += i915_module_load
 i915_module_load_SOURCES = i915/i915_module_load.c
 
diff --git a/tests/i915/i915_missed_irq.c b/tests/i915/i915_missed_irq.c
deleted file mode 100644
index 302da0e8..00000000
--- a/tests/i915/i915_missed_irq.c
+++ /dev/null
@@ -1,165 +0,0 @@
-/*
- * Copyright © 2016 Intel Corporation
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- *
- */
-
-#include <sched.h>
-
-#include "igt.h"
-#include "igt_debugfs.h"
-#include "igt_dummyload.h"
-#include "igt_sysfs.h"
-
-IGT_TEST_DESCRIPTION("Inject missed interrupts and make sure they are caught");
-
-static void trigger_missed_interrupt(int fd, unsigned ring)
-{
-	igt_spin_t *spin = __igt_spin_batch_new(fd, .engine = ring);
-	uint32_t go;
-	int link[2];
-
-	igt_assert(pipe(link) == 0);
-
-	igt_fork(child, 1) {
-		/*
-		 * We are now a low priority child on the *same* CPU as the
-		 * parent. We will have to wait for our parent to sleep
-		 * (gem_sync -> i915_wait_request) before we run.
-		 */
-		read(link[0], &go, sizeof(go));
-		igt_assert(gem_bo_busy(fd, spin->handle));
-		igt_spin_batch_end(spin);
-	}
-
-	write(link[1], &go, sizeof(go));
-	gem_sync(fd, spin->handle);
-	igt_waitchildren();
-
-	igt_spin_batch_free(fd, spin);
-	close(link[1]);
-	close(link[0]);
-}
-
-static void bind_to_cpu(int cpu)
-{
-	const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
-	struct sched_param rt = {.sched_priority = 99 };
-	cpu_set_t allowed;
-
-	igt_assert(sched_setscheduler(getpid(), SCHED_RR | SCHED_RESET_ON_FORK, &rt) == 0);
-
-	CPU_ZERO(&allowed);
-	CPU_SET(cpu % ncpus, &allowed);
-	igt_assert(sched_setaffinity(getpid(), sizeof(cpu_set_t), &allowed) == 0);
-}
-
-static void enable_missed_irq(int dir)
-{
-	igt_sysfs_printf(dir, "i915_ring_test_irq", "0x%x", -1);
-}
-
-static uint32_t disable_missed_irq(int dir)
-{
-	uint32_t mask = 0;
-
-	igt_sysfs_scanf(dir, "i915_ring_test_irq", "%x", &mask);
-	igt_sysfs_set(dir, "i915_ring_test_irq", "0");
-
-	return mask;
-}
-
-static uint32_t engine_mask(int dir)
-{
-	enable_missed_irq(dir);
-	return disable_missed_irq(dir);
-}
-
-igt_simple_main
-{
-	const struct intel_execution_engine *e;
-	unsigned expect_rings;
-	unsigned missed_rings;
-	unsigned check_rings;
-	int debugfs, device;
-
-	igt_skip_on_simulation();
-	bind_to_cpu(0);
-
-	device = drm_open_driver(DRIVER_INTEL);
-	igt_require_gem(device);
-	igt_skip_on(gem_has_guc_submission(device)); /* irq forced for guc */
-	gem_require_mmap_wc(device);
-	debugfs = igt_debugfs_dir(device);
-
-	expect_rings = engine_mask(debugfs);
-	igt_require(expect_rings);
-
-	igt_fork_hang_detector(device);
-
-	igt_debug("Clearing rings %x\n", expect_rings);
-	intel_detect_and_clear_missed_interrupts(device);
-	for (e = intel_execution_engines; e->name; e++) {
-		if (expect_rings == -1 && e->exec_id)
-			continue;
-
-		if (expect_rings != -1 && e->exec_id == 0)
-			continue;
-
-		if (!gem_has_ring(device, e->exec_id | e->flags))
-			continue;
-
-		igt_debug("Clearing ring %s [%x]\n",
-			  e->name, e->exec_id | e->flags);
-		trigger_missed_interrupt(device, e->exec_id | e->flags);
-	}
-	igt_assert_eq(intel_detect_and_clear_missed_interrupts(device), 0);
-
-	igt_debug("Testing rings %x\n", expect_rings);
-	enable_missed_irq(debugfs);
-	for (e = intel_execution_engines; e->name; e++) {
-		if (expect_rings == -1 && e->exec_id)
-			continue;
-
-		if (expect_rings != -1 && e->exec_id == 0)
-			continue;
-
-		if (!gem_has_ring(device, e->exec_id | e->flags))
-			continue;
-
-		igt_debug("Executing on ring %s [%x]\n",
-			  e->name, e->exec_id | e->flags);
-		trigger_missed_interrupt(device, e->exec_id | e->flags);
-	}
-	missed_rings = intel_detect_and_clear_missed_interrupts(device);
-
-	check_rings = disable_missed_irq(debugfs);
-	igt_assert_eq_u32(check_rings, expect_rings);
-
-	if (expect_rings == -1)
-		igt_assert_eq_u32(missed_rings, 1);
-	else
-		igt_assert_eq_u32(missed_rings, expect_rings);
-
-	close(debugfs);
-	igt_stop_hang_detector();
-	close(device);
-}
diff --git a/tests/meson.build b/tests/meson.build
index 9015f809..7d2ff948 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -215,7 +215,6 @@ i915_progs = [
 	'i915_fb_tiling',
 	'i915_getparams_basic',
 	'i915_hangman',
-	'i915_missed_irq',
 	'i915_module_load',
 	'i915_pm_backlight',
 	'i915_pm_lpsp',
-- 
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] 8+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests: Remove i915_missed_irq
  2019-04-03  0:20 [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq José Roberto de Souza
@ 2019-04-03  0:41 ` Patchwork
  2019-04-03  7:07 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
  2019-04-03 15:10 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-04-03  0:41 UTC (permalink / raw)
  To: Souza, Jose; +Cc: igt-dev

== Series Details ==

Series: tests: Remove i915_missed_irq
URL   : https://patchwork.freedesktop.org/series/58901/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5858 -> IGTPW_2768
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_uncore:
    - fi-ivb-3770:        PASS -> DMESG-FAIL [fdo#110210]

  * igt@kms_chamelium@dp-hpd-fast:
    - fi-skl-6700k2:      NOTRUN -> SKIP [fdo#109271] +31

  * igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b-frame-sequence:
    - fi-byt-clapper:     PASS -> FAIL [fdo#103191] / [fdo#107362]

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

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3:
    - fi-skl-6700k2:      INCOMPLETE [fdo#104108] / [fdo#107773] -> PASS

  * igt@i915_selftest@live_execlists:
    - fi-apl-guc:         INCOMPLETE [fdo#103927] / [fdo#109720] -> PASS

  
#### Warnings ####

  * igt@i915_selftest@live_contexts:
    - fi-icl-u3:          INCOMPLETE [fdo#108569] -> DMESG-FAIL [fdo#108569]
    - fi-icl-u2:          INCOMPLETE [fdo#108569] -> DMESG-FAIL [fdo#108569]

  
  [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#104108]: https://bugs.freedesktop.org/show_bug.cgi?id=104108
  [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#107773]: https://bugs.freedesktop.org/show_bug.cgi?id=107773
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109720]: https://bugs.freedesktop.org/show_bug.cgi?id=109720
  [fdo#110210]: https://bugs.freedesktop.org/show_bug.cgi?id=110210


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

  Missing    (5): fi-ilk-m540 fi-byt-squawks fi-bwr-2160 fi-ctg-p8600 fi-bdw-samus 


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

    * IGT: IGT_4922 -> IGTPW_2768

  CI_DRM_5858: 79fda73b53d7233c94922601d42aa0b7625544de @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2768: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2768/
  IGT_4922: e941e4a29438c7130554492e4daf52afbc99ffdf @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

-igt@i915_missed_irq

== Logs ==

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

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

* Re: [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
  2019-04-03  0:20 [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq José Roberto de Souza
  2019-04-03  0:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-04-03  7:07 ` Chris Wilson
  2019-04-03  8:40   ` Daniel Vetter
  2019-04-03 15:10 ` [igt-dev] ✓ Fi.CI.IGT: success for " Patchwork
  2 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2019-04-03  7:07 UTC (permalink / raw)
  To: José Roberto de Souza, igt-dev

Quoting José Roberto de Souza (2019-04-03 01:20:12)
> i915_ring_missed_irq was removed from debugfs in kernel patch
> 789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
> base of which i915_missed_irq was written, so removing this test for
> good.

Has it been removed from all trees yet? Is it even gone from Linus?
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
  2019-04-03  7:07 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
@ 2019-04-03  8:40   ` Daniel Vetter
  2019-04-03  8:42     ` Chris Wilson
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Vetter @ 2019-04-03  8:40 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

On Wed, Apr 03, 2019 at 08:07:23AM +0100, Chris Wilson wrote:
> Quoting José Roberto de Souza (2019-04-03 01:20:12)
> > i915_ring_missed_irq was removed from debugfs in kernel patch
> > 789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
> > base of which i915_missed_irq was written, so removing this test for
> > good.
> 
> Has it been removed from all trees yet? Is it even gone from Linus?

We won't be able to remove it from older igt releases either ... I think
we'll be fine.

Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch>
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
  2019-04-03  8:40   ` Daniel Vetter
@ 2019-04-03  8:42     ` Chris Wilson
  2019-04-03  8:46       ` Daniel Vetter
  0 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2019-04-03  8:42 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: igt-dev

Quoting Daniel Vetter (2019-04-03 09:40:09)
> On Wed, Apr 03, 2019 at 08:07:23AM +0100, Chris Wilson wrote:
> > Quoting José Roberto de Souza (2019-04-03 01:20:12)
> > > i915_ring_missed_irq was removed from debugfs in kernel patch
> > > 789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
> > > base of which i915_missed_irq was written, so removing this test for
> > > good.
> > 
> > Has it been removed from all trees yet? Is it even gone from Linus?
> 
> We won't be able to remove it from older igt releases either ... I think
> we'll be fine.

I was more curious if it is still in use for any of the CI trees - I
think the oldest of which we test is linus.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
  2019-04-03  8:42     ` Chris Wilson
@ 2019-04-03  8:46       ` Daniel Vetter
  2019-04-03  8:52         ` Chris Wilson
  0 siblings, 1 reply; 8+ messages in thread
From: Daniel Vetter @ 2019-04-03  8:46 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, Daniel Vetter

On Wed, Apr 03, 2019 at 09:42:03AM +0100, Chris Wilson wrote:
> Quoting Daniel Vetter (2019-04-03 09:40:09)
> > On Wed, Apr 03, 2019 at 08:07:23AM +0100, Chris Wilson wrote:
> > > Quoting José Roberto de Souza (2019-04-03 01:20:12)
> > > > i915_ring_missed_irq was removed from debugfs in kernel patch
> > > > 789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
> > > > base of which i915_missed_irq was written, so removing this test for
> > > > good.
> > > 
> > > Has it been removed from all trees yet? Is it even gone from Linus?
> > 
> > We won't be able to remove it from older igt releases either ... I think
> > we'll be fine.
> 
> I was more curious if it is still in use for any of the CI trees - I
> think the oldest of which we test is linus.

Good point. Seems to be gone from Linus' tree too, which is the last one
we care about I think.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq
  2019-04-03  8:46       ` Daniel Vetter
@ 2019-04-03  8:52         ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2019-04-03  8:52 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: igt-dev, Daniel Vetter

Quoting Daniel Vetter (2019-04-03 09:46:08)
> On Wed, Apr 03, 2019 at 09:42:03AM +0100, Chris Wilson wrote:
> > Quoting Daniel Vetter (2019-04-03 09:40:09)
> > > On Wed, Apr 03, 2019 at 08:07:23AM +0100, Chris Wilson wrote:
> > > > Quoting José Roberto de Souza (2019-04-03 01:20:12)
> > > > > i915_ring_missed_irq was removed from debugfs in kernel patch
> > > > > 789659f4307a ("drm/i915: Drop fake breadcrumb irq") and it was the
> > > > > base of which i915_missed_irq was written, so removing this test for
> > > > > good.
> > > > 
> > > > Has it been removed from all trees yet? Is it even gone from Linus?
> > > 
> > > We won't be able to remove it from older igt releases either ... I think
> > > we'll be fine.
> > 
> > I was more curious if it is still in use for any of the CI trees - I
> > think the oldest of which we test is linus.
> 
> Good point. Seems to be gone from Linus' tree too, which is the last one
> we care about I think.

Although shedding a tear over some crafty code, as CI is not using it any
more, there's no point keeping around dead code. Git, ad memoriam.

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests: Remove i915_missed_irq
  2019-04-03  0:20 [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq José Roberto de Souza
  2019-04-03  0:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2019-04-03  7:07 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
@ 2019-04-03 15:10 ` Patchwork
  2 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-04-03 15:10 UTC (permalink / raw)
  To: Souza, Jose; +Cc: igt-dev

== Series Details ==

Series: tests: Remove i915_missed_irq
URL   : https://patchwork.freedesktop.org/series/58901/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_5858_full -> IGTPW_2768_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_params@no-bsd:
    - shard-apl:          NOTRUN -> SKIP [fdo#109271] +11

  * igt@gem_stolen@large-object-alloc:
    - shard-kbl:          NOTRUN -> SKIP [fdo#109271] +2

  * igt@gem_stolen@stolen-clear:
    - shard-glk:          NOTRUN -> SKIP [fdo#109271] +22

  * igt@kms_atomic_transition@1x-modeset-transitions-nonblocking:
    - shard-apl:          PASS -> FAIL [fdo#109660]

  * igt@kms_busy@extended-modeset-hang-newfb-render-a:
    - shard-hsw:          PASS -> DMESG-WARN [fdo#110222] +2

  * igt@kms_busy@extended-modeset-hang-newfb-render-d:
    - shard-apl:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +1

  * igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-c:
    - shard-kbl:          PASS -> DMESG-WARN [fdo#110222]

  * igt@kms_busy@extended-pageflip-hang-newfb-render-d:
    - shard-glk:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278]

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          PASS -> FAIL [fdo#105363]

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-apl:          PASS -> FAIL [fdo#103167]
    - shard-kbl:          PASS -> FAIL [fdo#103167]

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] +44

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max:
    - shard-snb:          NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2

  * igt@kms_plane_scaling@pipe-a-scaler-with-clipping-clamping:
    - shard-glk:          PASS -> SKIP [fdo#109271] / [fdo#109278] +2

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

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-rpm:
    - shard-apl:          PASS -> FAIL [fdo#104894] +1

  
#### Possible fixes ####

  * igt@kms_busy@extended-modeset-hang-newfb-render-b:
    - shard-hsw:          DMESG-WARN [fdo#110222] -> PASS +1
    - shard-kbl:          DMESG-WARN [fdo#110222] -> PASS +2
    - shard-snb:          DMESG-WARN [fdo#110222] -> PASS +1

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

  * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
    - shard-kbl:          INCOMPLETE [fdo#103665] -> PASS

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

  
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
  [fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
  [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#109660]: https://bugs.freedesktop.org/show_bug.cgi?id=109660
  [fdo#110222]: https://bugs.freedesktop.org/show_bug.cgi?id=110222
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


Participating hosts (10 -> 5)
------------------------------

  Missing    (5): shard-skl pig-hsw-4770r pig-glk-j5005 shard-iclb pig-skl-6260u 


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

    * IGT: IGT_4922 -> IGTPW_2768
    * Piglit: piglit_4509 -> None

  CI_DRM_5858: 79fda73b53d7233c94922601d42aa0b7625544de @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_2768: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2768/
  IGT_4922: e941e4a29438c7130554492e4daf52afbc99ffdf @ 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_2768/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

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

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-03  0:20 [igt-dev] [PATCH i-g-t] tests: Remove i915_missed_irq José Roberto de Souza
2019-04-03  0:41 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-04-03  7:07 ` [igt-dev] [PATCH i-g-t] " Chris Wilson
2019-04-03  8:40   ` Daniel Vetter
2019-04-03  8:42     ` Chris Wilson
2019-04-03  8:46       ` Daniel Vetter
2019-04-03  8:52         ` Chris Wilson
2019-04-03 15:10 ` [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