All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test
@ 2020-01-29 22:14 Vinay Belgaumkar
  2020-01-29 22:27 ` Chris Wilson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Vinay Belgaumkar @ 2020-01-29 22:14 UTC (permalink / raw)
  To: igt-dev

Other tests already provide better coverage.

Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/Makefile.sources       |  3 --
 tests/i915/gem_largeobject.c | 88 ------------------------------------
 tests/meson.build            |  1 -
 3 files changed, 92 deletions(-)
 delete mode 100644 tests/i915/gem_largeobject.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 17397c8f..9191e466 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -294,9 +294,6 @@ gem_gtt_hog_SOURCES = i915/gem_gtt_hog.c
 TESTS_progs += gem_gtt_speed
 gem_gtt_speed_SOURCES = i915/gem_gtt_speed.c
 
-TESTS_progs += gem_largeobject
-gem_largeobject_SOURCES = i915/gem_largeobject.c
-
 TESTS_progs += gem_linear_blits
 gem_linear_blits_SOURCES = i915/gem_linear_blits.c
 
diff --git a/tests/i915/gem_largeobject.c b/tests/i915/gem_largeobject.c
deleted file mode 100644
index fc9296cd..00000000
--- a/tests/i915/gem_largeobject.c
+++ /dev/null
@@ -1,88 +0,0 @@
-/*
- * Copyright © 2008 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.
- *
- * Authors:
- *    Jesse Barnes <jbarnes@virtuousgeek.org>
- *
- */
-
-#include "igt.h"
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include <fcntl.h>
-#include <inttypes.h>
-#include <errno.h>
-#include <sys/stat.h>
-#include <sys/ioctl.h>
-#include "drm.h"
-
-/* Should take 64 pages to store the page pointers on 64 bit */
-#define OBJ_SIZE (128 * 1024 * 1024)
-
-unsigned char *data;
-
-static void
-test_large_object(int fd)
-{
-	struct drm_i915_gem_create create;
-	struct drm_i915_gem_pin pin;
-	uint32_t obj_size;
-	char *ptr;
-
-	memset(&create, 0, sizeof(create));
-	memset(&pin, 0, sizeof(pin));
-
-	if (gem_aperture_size(fd)*3/4 < OBJ_SIZE/2)
-		obj_size = OBJ_SIZE / 4;
-	else if (gem_aperture_size(fd)*3/4 < OBJ_SIZE)
-		obj_size = OBJ_SIZE / 2;
-	else
-		obj_size = OBJ_SIZE;
-	create.size = obj_size;
-	igt_info("obj size %i\n", obj_size);
-
-	igt_assert(ioctl(fd, DRM_IOCTL_I915_GEM_CREATE, &create) == 0);
-
-	/* prefault */
-	ptr = gem_mmap__gtt(fd, create.handle, obj_size,
-			    PROT_WRITE | PROT_READ);
-	*ptr = 0;
-
-	gem_write(fd, create.handle, 0, data, obj_size);
-
-	/* kernel should clean this up for us */
-}
-
-igt_simple_main
-{
-	int fd;
-
-	data = malloc(OBJ_SIZE);
-	igt_assert(data);
-
-	fd = drm_open_driver(DRIVER_INTEL);
-
-	test_large_object(fd);
-
-	free(data);
-}
diff --git a/tests/meson.build b/tests/meson.build
index a417ceb9..7bacaef3 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -164,7 +164,6 @@ i915_progs = [
 	'gem_gtt_cpu_tlb',
 	'gem_gtt_hog',
 	'gem_gtt_speed',
-	'gem_largeobject',
 	'gem_linear_blits',
 	'gem_lut_handle',
 	'gem_madvise',
-- 
2.22.0.245.g4d8ec15c66

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

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

* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test
  2020-01-29 22:14 [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test Vinay Belgaumkar
@ 2020-01-29 22:27 ` Chris Wilson
  2020-01-29 23:19 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2020-02-01  8:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Chris Wilson @ 2020-01-29 22:27 UTC (permalink / raw)
  To: Vinay Belgaumkar, igt-dev

Quoting Vinay Belgaumkar (2020-01-29 22:14:09)
> Other tests already provide better coverage.
> 
> Signed-off-by: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
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] 4+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_largeobject: Remove test
  2020-01-29 22:14 [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test Vinay Belgaumkar
  2020-01-29 22:27 ` Chris Wilson
@ 2020-01-29 23:19 ` Patchwork
  2020-02-01  8:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-01-29 23:19 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: igt-dev

== Series Details ==

Series: tests/i915/gem_largeobject: Remove test
URL   : https://patchwork.freedesktop.org/series/72744/
State : success

== Summary ==

CI Bug Log - changes from IGT_5405 -> IGTPW_4035
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/index.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live_gem_contexts:
    - fi-byt-n2820:       [PASS][1] -> [DMESG-FAIL][2] ([i915#1052])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-byt-n2820/igt@i915_selftest@live_gem_contexts.html

  
#### Possible fixes ####

  * igt@gem_close_race@basic-threads:
    - fi-hsw-peppy:       [TIMEOUT][3] ([fdo#112271]) -> [PASS][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-peppy/igt@gem_close_race@basic-threads.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-hsw-peppy/igt@gem_close_race@basic-threads.html

  * igt@i915_selftest@live_blt:
    - fi-ivb-3770:        [DMESG-FAIL][5] ([i915#725]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-ivb-3770/igt@i915_selftest@live_blt.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-ivb-3770/igt@i915_selftest@live_blt.html
    - fi-hsw-4770:        [DMESG-FAIL][7] ([i915#725]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-hsw-4770/igt@i915_selftest@live_blt.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-hsw-4770/igt@i915_selftest@live_blt.html

  * igt@i915_selftest@live_execlists:
    - fi-skl-guc:         [INCOMPLETE][9] -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-skl-guc/igt@i915_selftest@live_execlists.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-skl-guc/igt@i915_selftest@live_execlists.html

  
#### Warnings ####

  * igt@gem_exec_parallel@contexts:
    - fi-byt-j1900:       [TIMEOUT][11] ([fdo#112271]) -> [FAIL][12] ([i915#694])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-j1900/igt@gem_exec_parallel@contexts.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-byt-j1900/igt@gem_exec_parallel@contexts.html
    - fi-byt-n2820:       [FAIL][13] ([i915#694]) -> [TIMEOUT][14] ([fdo#112271]) +1 similar issue
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-byt-n2820/igt@gem_exec_parallel@contexts.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-byt-n2820/igt@gem_exec_parallel@contexts.html

  * igt@i915_selftest@live_execlists:
    - fi-icl-y:           [DMESG-FAIL][15] ([fdo#108569]) -> [INCOMPLETE][16] ([i915#140])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-icl-y/igt@i915_selftest@live_execlists.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-icl-y/igt@i915_selftest@live_execlists.html

  * igt@kms_chamelium@hdmi-hpd-fast:
    - fi-kbl-7500u:       [FAIL][17] ([fdo#111096] / [i915#323]) -> [FAIL][18] ([fdo#111407])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html

  
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
  [fdo#111407]: https://bugs.freedesktop.org/show_bug.cgi?id=111407
  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
  [i915#1052]: https://gitlab.freedesktop.org/drm/intel/issues/1052
  [i915#140]: https://gitlab.freedesktop.org/drm/intel/issues/140
  [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323
  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725


Participating hosts (46 -> 45)
------------------------------

  Additional (5): fi-bdw-gvtdvm fi-snb-2520m fi-gdg-551 fi-elk-e7500 fi-skl-6700k2 
  Missing    (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-tgl-y fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5405 -> IGTPW_4035

  CI-20190529: 20190529
  CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4035: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/index.html
  IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

-igt@gem_largeobject

== Logs ==

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_largeobject: Remove test
  2020-01-29 22:14 [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test Vinay Belgaumkar
  2020-01-29 22:27 ` Chris Wilson
  2020-01-29 23:19 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-02-01  8:25 ` Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2020-02-01  8:25 UTC (permalink / raw)
  To: Vinay Belgaumkar; +Cc: igt-dev

== Series Details ==

Series: tests/i915/gem_largeobject: Remove test
URL   : https://patchwork.freedesktop.org/series/72744/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5405_full -> IGTPW_4035_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_4035_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_4035_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://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/index.html

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_4035_full:

### IGT changes ###

#### Possible regressions ####

  * igt@gem_exec_flush@basic-uc-prw-default:
    - shard-snb:          NOTRUN -> [FAIL][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-snb1/igt@gem_exec_flush@basic-uc-prw-default.html

  * igt@kms_dp_aux_dev:
    - shard-iclb:         [PASS][2] -> [TIMEOUT][3] +2 similar issues
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb3/igt@kms_dp_aux_dev.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb7/igt@kms_dp_aux_dev.html

  
#### Warnings ####

  * igt@gem_exec_balancer@hang:
    - shard-kbl:          [TIMEOUT][4] ([fdo#112271]) -> [FAIL][5]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl4/igt@gem_exec_balancer@hang.html
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl4/igt@gem_exec_balancer@hang.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * {igt@gem_ctx_persistence@vcs1-hang}:
    - shard-iclb:         [PASS][6] -> [SKIP][7]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_ctx_persistence@vcs1-hang.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb5/igt@gem_ctx_persistence@vcs1-hang.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_isolation@rcs0-s3:
    - shard-kbl:          [PASS][8] -> [DMESG-WARN][9] ([i915#56])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl7/igt@gem_ctx_isolation@rcs0-s3.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl1/igt@gem_ctx_isolation@rcs0-s3.html
    - shard-apl:          [PASS][10] -> [DMESG-WARN][11] ([i915#180]) +3 similar issues
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl2/igt@gem_ctx_isolation@rcs0-s3.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-apl1/igt@gem_ctx_isolation@rcs0-s3.html

  * igt@gem_ctx_shared@exec-single-timeline-bsd:
    - shard-iclb:         [PASS][12] -> [SKIP][13] ([fdo#110841])
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb4/igt@gem_ctx_shared@exec-single-timeline-bsd.html

  * igt@gem_exec_schedule@preempt-queue-bsd1:
    - shard-iclb:         [PASS][14] -> [SKIP][15] ([fdo#109276]) +19 similar issues
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb4/igt@gem_exec_schedule@preempt-queue-bsd1.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html

  * igt@gem_exec_schedule@wide-bsd:
    - shard-iclb:         [PASS][16] -> [SKIP][17] ([fdo#112146]) +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@gem_exec_schedule@wide-bsd.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb2/igt@gem_exec_schedule@wide-bsd.html

  * igt@gem_exec_store@cachelines-vcs1:
    - shard-iclb:         [PASS][18] -> [SKIP][19] ([fdo#112080]) +11 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@gem_exec_store@cachelines-vcs1.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb5/igt@gem_exec_store@cachelines-vcs1.html

  * igt@gem_partial_pwrite_pread@write-display:
    - shard-hsw:          [PASS][20] -> [FAIL][21] ([i915#694])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw8/igt@gem_partial_pwrite_pread@write-display.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw2/igt@gem_partial_pwrite_pread@write-display.html

  * igt@gem_tiled_blits@normal:
    - shard-hsw:          [PASS][22] -> [FAIL][23] ([i915#818])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw4/igt@gem_tiled_blits@normal.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw1/igt@gem_tiled_blits@normal.html

  * igt@gem_workarounds@suspend-resume-context:
    - shard-kbl:          [PASS][24] -> [INCOMPLETE][25] ([fdo#103665])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl1/igt@gem_workarounds@suspend-resume-context.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl3/igt@gem_workarounds@suspend-resume-context.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-glk:          [PASS][26] -> [INCOMPLETE][27] ([i915#58] / [k.org#198133])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-iclb:         [PASS][28] -> [FAIL][29] ([i915#454])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@i915_pm_dc@dc6-dpms.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
    - shard-kbl:          [PASS][30] -> [FAIL][31] ([i915#49])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
    - shard-glk:          [PASS][32] -> [FAIL][33] ([i915#49])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-glk6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
    - shard-apl:          [PASS][34] -> [FAIL][35] ([i915#49])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][36] -> [SKIP][37] ([fdo#109441]) +2 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb5/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_vblank@pipe-a-ts-continuation-suspend:
    - shard-kbl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180]) +8 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl3/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html

  
#### Possible fixes ####

  * igt@gem_busy@close-race:
    - shard-hsw:          [TIMEOUT][40] ([fdo#112271] / [i915#1084]) -> [PASS][41]
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw1/igt@gem_busy@close-race.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw1/igt@gem_busy@close-race.html

  * igt@gem_exec_schedule@preemptive-hang-bsd:
    - shard-iclb:         [SKIP][42] ([fdo#112146]) -> [PASS][43] +10 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html

  * igt@gem_ppgtt@flink-and-close-vma-leak:
    - shard-glk:          [FAIL][44] ([i915#644]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk7/igt@gem_ppgtt@flink-and-close-vma-leak.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-glk6/igt@gem_ppgtt@flink-and-close-vma-leak.html

  * igt@gem_tiled_blits@interruptible:
    - shard-hsw:          [FAIL][46] ([i915#818]) -> [PASS][47]
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw8/igt@gem_tiled_blits@interruptible.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw6/igt@gem_tiled_blits@interruptible.html

  * igt@kms_atomic_transition@1x-modeset-transitions:
    - shard-hsw:          [DMESG-WARN][48] ([i915#44]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@kms_atomic_transition@1x-modeset-transitions.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw6/igt@kms_atomic_transition@1x-modeset-transitions.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
    - shard-tglb:         [SKIP][50] ([i915#668]) -> [PASS][51] +2 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-tglb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [DMESG-WARN][52] ([i915#180]) -> [PASS][53] +1 similar issue
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-apl:          [DMESG-WARN][54] ([i915#180]) -> [PASS][55] +2 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-apl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][56] ([fdo#109441]) -> [PASS][57] +1 similar issue
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@kms_psr@psr2_no_drrs.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@perf_pmu@init-busy-vcs1:
    - shard-iclb:         [SKIP][58] ([fdo#112080]) -> [PASS][59] +12 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@perf_pmu@init-busy-vcs1.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb2/igt@perf_pmu@init-busy-vcs1.html

  * igt@prime_vgem@fence-wait-bsd2:
    - shard-iclb:         [SKIP][60] ([fdo#109276]) -> [PASS][61] +14 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb7/igt@prime_vgem@fence-wait-bsd2.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb1/igt@prime_vgem@fence-wait-bsd2.html

  
#### Warnings ####

  * igt@gem_ctx_isolation@vcs1-nonpriv:
    - shard-iclb:         [SKIP][62] ([fdo#112080]) -> [FAIL][63] ([IGT#28])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-iclb5/igt@gem_ctx_isolation@vcs1-nonpriv.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html

  * igt@gem_eio@in-flight-contexts-immediate:
    - shard-kbl:          [INCOMPLETE][64] ([CI#80] / [fdo#103665]) -> [TIMEOUT][65] ([fdo#112271])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-kbl4/igt@gem_eio@in-flight-contexts-immediate.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-kbl4/igt@gem_eio@in-flight-contexts-immediate.html

  * igt@gem_eio@in-flight-immediate:
    - shard-apl:          [TIMEOUT][66] ([fdo#112271]) -> [INCOMPLETE][67] ([CI#80] / [fdo#103927])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-apl7/igt@gem_eio@in-flight-immediate.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-apl1/igt@gem_eio@in-flight-immediate.html

  * igt@gem_eio@reset-stress:
    - shard-glk:          [TIMEOUT][68] ([fdo#112271]) -> [INCOMPLETE][69] ([CI#80] / [i915#58] / [k.org#198133])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-glk5/igt@gem_eio@reset-stress.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-glk7/igt@gem_eio@reset-stress.html

  * igt@gem_userptr_blits@map-fixed-invalidate-busy-gup:
    - shard-snb:          [DMESG-WARN][70] ([fdo#111870] / [i915#478]) -> [DMESG-WARN][71] ([fdo#110789] / [fdo#111870] / [i915#478])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-snb4/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-snb5/igt@gem_userptr_blits@map-fixed-invalidate-busy-gup.html

  * igt@i915_pm_dc@dc6-dpms:
    - shard-tglb:         [SKIP][72] ([i915#468]) -> [FAIL][73] ([i915#454])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-tglb5/igt@i915_pm_dc@dc6-dpms.html

  * igt@i915_selftest@live_blt:
    - shard-hsw:          [DMESG-FAIL][74] ([i915#563]) -> [DMESG-FAIL][75] ([i915#553] / [i915#725])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5405/shard-hsw5/igt@i915_selftest@live_blt.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/shard-hsw2/igt@i915_selftest@live_blt.html

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

  [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80
  [IGT#28]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/28
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789
  [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
  [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870
  [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080
  [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146
  [fdo#112271]: https://bugs.freedesktop.org/show_bug.cgi?id=112271
  [i915#1084]: https://gitlab.freedesktop.org/drm/intel/issues/1084
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#44]: https://gitlab.freedesktop.org/drm/intel/issues/44
  [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
  [i915#468]: https://gitlab.freedesktop.org/drm/intel/issues/468
  [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#553]: https://gitlab.freedesktop.org/drm/intel/issues/553
  [i915#56]: https://gitlab.freedesktop.org/drm/intel/issues/56
  [i915#563]: https://gitlab.freedesktop.org/drm/intel/issues/563
  [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58
  [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644
  [i915#668]: https://gitlab.freedesktop.org/drm/intel/issues/668
  [i915#694]: https://gitlab.freedesktop.org/drm/intel/issues/694
  [i915#725]: https://gitlab.freedesktop.org/drm/intel/issues/725
  [i915#818]: https://gitlab.freedesktop.org/drm/intel/issues/818
  [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133


Participating hosts (8 -> 8)
------------------------------

  No changes in participating hosts


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5405 -> IGTPW_4035

  CI-20190529: 20190529
  CI_DRM_7838: d3d96beea538c8de906a1c4d7e6793a47d17a471 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4035: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4035/index.html
  IGT_5405: add505d102f5d27e38cb4d926524664e161c2a1a @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

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

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

end of thread, other threads:[~2020-02-01  8:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-29 22:14 [igt-dev] [PATCH i-g-t] tests/i915/gem_largeobject: Remove test Vinay Belgaumkar
2020-01-29 22:27 ` Chris Wilson
2020-01-29 23:19 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2020-02-01  8:25 ` [igt-dev] ✗ Fi.CI.IGT: failure " 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.