* [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation
@ 2019-11-15 15:38 Ramalingam C
2019-11-15 15:44 ` Chris Wilson
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Ramalingam C @ 2019-11-15 15:38 UTC (permalink / raw)
To: igt-dev, Chris Wilson, Matthew Auld
Tests are developed for dumb buffer creation.
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
cc: Chris Wilson <chris@chris-wilson.co.uk>
---
tests/Makefile.am | 2 +
tests/Makefile.sources | 3 +
tests/i915/gem_dumb_buffer.c | 266 +++++++++++++++++++++++++++++++++++
tests/meson.build | 8 ++
4 files changed, 279 insertions(+)
create mode 100644 tests/i915/gem_dumb_buffer.c
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 7d71df8c7a2e..66e69558663a 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -96,6 +96,8 @@ gem_close_race_LDADD = $(LDADD) -lpthread
gem_ctx_thrash_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
gem_ctx_thrash_LDADD = $(LDADD) -lpthread
gem_ctx_sseu_LDADD = $(LDADD) $(top_builddir)/lib/libigt_perf.la
+gem_dumb_buffer_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
+gem_dumb_buffer_LDADD = $(LDADD) -lpthread -latomic
gem_exec_balancer_LDADD = $(LDADD) $(top_builddir)/lib/libigt_perf.la
gem_exec_capture_LDADD = $(LDADD) -lz
gem_exec_parallel_CFLAGS = $(AM_CFLAGS) $(THREAD_CFLAGS)
diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index abf1e2fc14a3..438f71ef88cf 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -172,6 +172,9 @@ gem_ctx_switch_SOURCES = i915/gem_ctx_switch.c
TESTS_progs += gem_ctx_thrash
gem_ctx_thrash_SOURCES = i915/gem_ctx_thrash.c
+TESTS_progs += gem_dumb_buffer
+gem_dumb_buffer_SOURCES = i915/gem_dumb_buffer.c
+
TESTS_progs += gem_double_irq_loop
gem_double_irq_loop_SOURCES = i915/gem_double_irq_loop.c
diff --git a/tests/i915/gem_dumb_buffer.c b/tests/i915/gem_dumb_buffer.c
new file mode 100644
index 000000000000..d6a8ea5a8a6a
--- /dev/null
+++ b/tests/i915/gem_dumb_buffer.c
@@ -0,0 +1,266 @@
+/*
+ * Copyright © 2015 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:
+ * Ramalingam C <ramalingam.c@intel.com>
+ *
+ */
+
+/** @file gem_dumb_buffer.c
+ *
+ * This is a test for the extended and old gem_create_dumb and gem_mmap_dumb
+ * ioctl, that includes allocation of object from stolen memory, shmem and
+ * local memory.
+ *
+ * The goal is to simply ensure that basics work and invalid input
+ * combinations are rejected.
+ */
+
+#include <stdlib.h>
+#include <sys/ioctl.h>
+#include <stdio.h>
+#include <string.h>
+#include <fcntl.h>
+#include <inttypes.h>
+#include <errno.h>
+#include <sys/stat.h>
+#include <sys/time.h>
+#include <getopt.h>
+#include <pthread.h>
+#include <stdatomic.h>
+
+#include <drm.h>
+
+#include "ioctl_wrappers.h"
+#include "intel_bufmgr.h"
+#include "intel_batchbuffer.h"
+#include "intel_io.h"
+#include "intel_chipset.h"
+#include "igt_aux.h"
+#include "drmtest.h"
+#include "drm.h"
+#include "i915_drm.h"
+
+IGT_TEST_DESCRIPTION("This is a test for the extended & old gem_create_dumb and"
+ " gem_mmap_dumb ioctl,"
+ " that includes allocation of object from stolen memory,"
+ " shmem and local memory.");
+
+#define CLEAR(s) memset(&s, 0, sizeof(s))
+#define PAGE_SIZE 4096
+
+static void invalid_dimensions_test(int fd)
+{
+ struct drm_mode_create_dumb create;
+
+ memset(&create, 0, sizeof(create));
+ create.width = 4032;
+ create.height = 2016;
+ create.bpp = 24;
+ do_ioctl_err(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create, EINVAL);
+
+ create.bpp = 32;
+ create.width = 0;
+ do_ioctl_err(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create, EINVAL);
+
+ create.width = 4032;
+ create.height = 0;
+ do_ioctl_err(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create, EINVAL);
+}
+
+static void valid_dumb_creation_test(int fd)
+{
+ struct drm_mode_create_dumb create = {
+ .width = 4032,
+ .height = 2016,
+ .bpp = 32,
+ };
+
+ do_ioctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create);
+ gem_close(fd, create.handle);
+}
+
+/*
+ * Creating an dumb buffer with non-aligned size and trying to access it with an
+ * offset, which is greater than the requested size but smaller than the
+ * object's last page boundary. pwrite here must be successful.
+ */
+static void valid_nonaligned_size(int fd)
+{
+ struct drm_mode_create_dumb create = {
+ .width = 24,
+ .height = 24,
+ .bpp = 32,
+ };
+ char buf[PAGE_SIZE];
+
+ do_ioctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create);
+
+ gem_write(fd, create.handle, PAGE_SIZE / 2, buf, PAGE_SIZE / 2);
+
+ gem_close(fd, create.handle);
+}
+
+/*
+ * Creating an object with non-aligned size and trying to access it with an
+ * offset, which is greater than the requested size and larger than the
+ * object's last page boundary. pwrite here must fail.
+ */
+static void invalid_nonaligned_size(int fd)
+{
+ struct drm_mode_create_dumb create = {
+ .width = 24,
+ .height = 24,
+ .bpp = 32,
+ };
+ char buf[PAGE_SIZE];
+
+ do_ioctl(fd, DRM_IOCTL_MODE_CREATE_DUMB, &create);
+ /* This should fail. Hence cannot use gem_write. */
+ igt_assert(__gem_write(fd, create.handle,
+ create.size - (PAGE_SIZE / 2), buf, PAGE_SIZE));
+ gem_close(fd, create.handle);
+}
+
+static uint64_t atomic_compare_swap_u64(_Atomic(uint64_t) *ptr,
+ uint64_t oldval, uint64_t newval)
+{
+ atomic_compare_exchange_strong(ptr, &oldval, newval);
+ return oldval;
+}
+
+static uint64_t get_npages(_Atomic(uint64_t) *global, uint64_t npages)
+{
+ uint64_t try, old, max;
+
+ max = *global;
+ do {
+ old = max;
+ try = 1 + npages % (max / 2);
+ max -= try;
+ } while ((max = atomic_compare_swap_u64(global, old, max)) != old);
+
+ return try;
+}
+
+struct thread_clear {
+ _Atomic(uint64_t) max;
+ int timeout;
+ int i915;
+};
+
+static void *thread_clear(void *data)
+{
+ struct thread_clear *arg = data;
+ unsigned long checked = 0;
+ int i915 = arg->i915;
+
+ igt_until_timeout(arg->timeout) {
+ struct drm_mode_create_dumb create = {};
+ uint64_t npages;
+ uint32_t stride;
+
+ npages = random();
+ npages = npages << 32;
+ npages |= random();
+ npages = get_npages(&arg->max, npages);
+
+ for(uint64_t _npages = npages; npages > 0; npages -= _npages)
+ {
+ create.bpp = 32;
+ create.width = PAGE_SIZE / (create.bpp / 8);
+ stride = create.width * DIV_ROUND_UP(create.bpp, 8);
+ _npages = npages <= (((unsigned int)~0U) / stride) ?
+ npages : (((unsigned int)~0U) / stride);
+ create.height = _npages;
+
+ do_ioctl(i915, DRM_IOCTL_MODE_CREATE_DUMB, &create);
+
+ igt_assert(_npages == create.size / PAGE_SIZE);
+
+ for (uint64_t page = 0; page < _npages; page++) {
+ uint64_t x;
+
+ gem_read(i915, create.handle,
+ page * 4096 +
+ (page % (4096 - sizeof(x))),
+ &x, sizeof(x));
+ igt_assert_eq_u64(x, 0);
+ }
+ gem_close(i915, create.handle);
+ checked += _npages;
+ }
+
+ atomic_fetch_add(&arg->max, npages);
+ }
+
+ return (void *)(uintptr_t)checked;
+}
+
+static void always_clear(int i915, int timeout)
+{
+ struct thread_clear arg = {
+ .i915 = i915,
+ .timeout = timeout,
+ .max = intel_get_avail_ram_mb() << (20 - 12), /* in pages */
+ };
+ const int ncpus = sysconf(_SC_NPROCESSORS_ONLN);
+ unsigned long checked;
+ pthread_t thread[ncpus];
+ void *result;
+
+ for (int i = 0; i < ncpus; i++)
+ pthread_create(&thread[i], NULL, thread_clear, &arg);
+
+ checked = 0;
+ for (int i = 0; i < ncpus; i++) {
+ pthread_join(thread[i], &result);
+ checked += (uintptr_t)result;
+ }
+ igt_info("Checked %'lu page allocations\n", checked);
+}
+
+igt_main
+{
+ int fd = -1;
+
+ igt_skip_on_simulation();
+
+ igt_fixture {
+ fd = drm_open_driver(DRIVER_INTEL);
+ }
+
+ igt_subtest("invalid-bpp")
+ invalid_dimensions_test(fd);
+
+ igt_subtest("create-valid-dumb")
+ valid_dumb_creation_test(fd);
+
+ igt_subtest("create-valid-nonaligned")
+ valid_nonaligned_size(fd);
+
+ igt_subtest("create-invalid-nonaligned")
+ invalid_nonaligned_size(fd);
+
+ igt_subtest("create-clear")
+ always_clear(fd, 30);
+}
diff --git a/tests/meson.build b/tests/meson.build
index 98f2db55584d..de5a2708d3f5 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -289,6 +289,14 @@ test_executables += executable('gem_create',
install : true)
test_list += 'gem_create'
+test_executables += executable('gem_dumb_buffer',
+ join_paths('i915', 'gem_dumb_buffer.c'),
+ dependencies : test_deps + [ libatomic ],
+ install_dir : libexecdir,
+ install_rpath : libexecdir_rpathdir,
+ install : true)
+test_list += 'gem_dumb_buffer'
+
test_executables += executable('gem_ctx_sseu',
join_paths('i915', 'gem_ctx_sseu.c'),
dependencies : test_deps + [ lib_igt_perf ],
--
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] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation
2019-11-15 15:38 [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation Ramalingam C
@ 2019-11-15 15:44 ` Chris Wilson
2019-11-15 16:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2019-11-15 15:44 UTC (permalink / raw)
To: Matthew Auld, Ramalingam C, igt-dev
Quoting Ramalingam C (2019-11-15 15:38:47)
> +static void *thread_clear(void *data)
> +{
> + struct thread_clear *arg = data;
> + unsigned long checked = 0;
> + int i915 = arg->i915;
> +
> + igt_until_timeout(arg->timeout) {
> + struct drm_mode_create_dumb create = {};
> + uint64_t npages;
> + uint32_t stride;
> +
> + npages = random();
> + npages = npages << 32;
> + npages |= random();
> + npages = get_npages(&arg->max, npages);
> +
> + for(uint64_t _npages = npages; npages > 0; npages -= _npages)
> + {
> + create.bpp = 32;
> + create.width = PAGE_SIZE / (create.bpp / 8);
> + stride = create.width * DIV_ROUND_UP(create.bpp, 8);
> + _npages = npages <= (((unsigned int)~0U) / stride) ?
> + npages : (((unsigned int)~0U) / stride);
> + create.height = _npages;
> +
> + do_ioctl(i915, DRM_IOCTL_MODE_CREATE_DUMB, &create);
> +
> + igt_assert(_npages == create.size / PAGE_SIZE);
> +
> + for (uint64_t page = 0; page < _npages; page++) {
> + uint64_t x;
> +
> + gem_read(i915, create.handle,
> + page * 4096 +
> + (page % (4096 - sizeof(x))),
> + &x, sizeof(x));
If we replace the read here with dump_mmap, we can make this generic and
work on any driver. (DRIVER_ANY, and place under tests/ not tests/i915)
[You will of course then want to do a few tests to exercise the
dump_mmap_ioctl itself to verify it separately.]
Otherwise,
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Thanks, that satisfies my worry about closing a potential back door.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: failure for tests/dumb_buffer: Tests for creation
2019-11-15 15:38 [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation Ramalingam C
2019-11-15 15:44 ` Chris Wilson
@ 2019-11-15 16:22 ` Patchwork
2019-11-15 16:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-11-17 1:12 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-11-15 16:22 UTC (permalink / raw)
To: Ramalingam C; +Cc: igt-dev
== Series Details ==
Series: tests/dumb_buffer: Tests for creation
URL : https://patchwork.freedesktop.org/series/69543/
State : failure
== Summary ==
ERROR! This series introduces new undocumented tests:
gem_dumb_buffer@create-clear
gem_dumb_buffer@create-invalid-nonaligned
gem_dumb_buffer@create-valid-dumb
gem_dumb_buffer@create-valid-nonaligned
gem_dumb_buffer@invalid-bpp
Can you document them as per the requirement in the [CONTRIBUTING.md]?
[Documentation] has more details on how to do this.
Here are few examples:
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/0316695d03aa46108296b27f3982ec93200c7a6e
https://gitlab.freedesktop.org/drm/igt-gpu-tools/commit/443cc658e1e6b492ee17bf4f4d891029eb7a205d
Thanks in advance!
[CONTRIBUTING.md]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/blob/master/CONTRIBUTING.md#L19
[Documentation]: https://drm.pages.freedesktop.org/igt-gpu-tools/igt-gpu-tools-Core.html#igt-describe
Other than that, pipeline status: SUCCESS.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/79525 for the overview.
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/pipelines/79525
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/dumb_buffer: Tests for creation
2019-11-15 15:38 [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation Ramalingam C
2019-11-15 15:44 ` Chris Wilson
2019-11-15 16:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork
@ 2019-11-15 16:28 ` Patchwork
2019-11-17 1:12 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-11-15 16:28 UTC (permalink / raw)
To: Ramalingam C; +Cc: igt-dev
== Series Details ==
Series: tests/dumb_buffer: Tests for creation
URL : https://patchwork.freedesktop.org/series/69543/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_7352 -> IGTPW_3716
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3716:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_module_load@reload-no-display:
- {fi-kbl-7560u}: [PASS][1] -> [DMESG-WARN][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-kbl-7560u/igt@i915_module_load@reload-no-display.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-kbl-7560u/igt@i915_module_load@reload-no-display.html
* igt@runner@aborted:
- {fi-kbl-7560u}: NOTRUN -> [FAIL][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-kbl-7560u/igt@runner@aborted.html
Known issues
------------
Here are the changes found in IGTPW_3716 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_module_load@reload-no-display:
- fi-skl-lmem: [PASS][4] -> [DMESG-WARN][5] ([fdo#112261])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-skl-lmem/igt@i915_module_load@reload-no-display.html
* igt@kms_busy@basic-flip-pipe-b:
- fi-skl-6770hq: [PASS][6] -> [DMESG-WARN][7] ([fdo#105541])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-6770hq/igt@kms_busy@basic-flip-pipe-b.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-skl-6770hq/igt@kms_busy@basic-flip-pipe-b.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-skl-6770hq: [PASS][8] -> [WARN][9] ([fdo#112252])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-skl-6770hq/igt@kms_setmode@basic-clone-single-crtc.html
#### Possible fixes ####
* igt@i915_module_load@reload-with-fault-injection:
- fi-skl-6770hq: [INCOMPLETE][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-skl-6770hq/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_selftest@live_blt:
- fi-bsw-nick: [DMESG-FAIL][12] ([fdo#112176]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-bsw-nick/igt@i915_selftest@live_blt.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-bsw-nick/igt@i915_selftest@live_blt.html
* igt@kms_chamelium@dp-crc-fast:
- fi-icl-u2: [FAIL][14] ([fdo#109635 ] / [fdo#110387]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/fi-icl-u2/igt@kms_chamelium@dp-crc-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#105541]: https://bugs.freedesktop.org/show_bug.cgi?id=105541
[fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635
[fdo#110387]: https://bugs.freedesktop.org/show_bug.cgi?id=110387
[fdo#112176]: https://bugs.freedesktop.org/show_bug.cgi?id=112176
[fdo#112252]: https://bugs.freedesktop.org/show_bug.cgi?id=112252
[fdo#112261]: https://bugs.freedesktop.org/show_bug.cgi?id=112261
Participating hosts (53 -> 44)
------------------------------
Missing (9): fi-hsw-4770r fi-ilk-m540 fi-tgl-u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5288 -> IGTPW_3716
CI-20190529: 20190529
CI_DRM_7352: 9d6a1b13121af95e05798c72a76bf00207816f0e @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3716: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/index.html
IGT_5288: ff4551e36cd8e573ceb1e450d17a12e3298dc04c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@gem_dumb_buffer@create-clear
+igt@gem_dumb_buffer@create-invalid-nonaligned
+igt@gem_dumb_buffer@create-valid-dumb
+igt@gem_dumb_buffer@create-valid-nonaligned
+igt@gem_dumb_buffer@invalid-bpp
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/dumb_buffer: Tests for creation
2019-11-15 15:38 [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation Ramalingam C
` (2 preceding siblings ...)
2019-11-15 16:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2019-11-17 1:12 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-11-17 1:12 UTC (permalink / raw)
To: Ramalingam C; +Cc: igt-dev
== Series Details ==
Series: tests/dumb_buffer: Tests for creation
URL : https://patchwork.freedesktop.org/series/69543/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_7352_full -> IGTPW_3716_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_3716_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_3716_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_3716/index.html
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3716_full:
### IGT changes ###
#### Possible regressions ####
* {igt@gem_dumb_buffer@create-clear} (NEW):
- shard-tglb: NOTRUN -> [CRASH][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb7/igt@gem_dumb_buffer@create-clear.html
- shard-apl: NOTRUN -> [CRASH][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-apl3/igt@gem_dumb_buffer@create-clear.html
- shard-iclb: NOTRUN -> [CRASH][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb4/igt@gem_dumb_buffer@create-clear.html
- shard-hsw: NOTRUN -> [TIMEOUT][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-hsw2/igt@gem_dumb_buffer@create-clear.html
- shard-kbl: NOTRUN -> [CRASH][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-kbl4/igt@gem_dumb_buffer@create-clear.html
- shard-snb: NOTRUN -> [CRASH][6]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-snb6/igt@gem_dumb_buffer@create-clear.html
* igt@i915_pm_rpm@universal-planes:
- shard-tglb: [PASS][7] -> [INCOMPLETE][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb2/igt@i915_pm_rpm@universal-planes.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb9/igt@i915_pm_rpm@universal-planes.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@gem_exec_parse_blt@batch-without-end}:
- shard-tglb: NOTRUN -> [SKIP][9] +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb7/igt@gem_exec_parse_blt@batch-without-end.html
New tests
---------
New tests have been introduced between CI_DRM_7352_full and IGTPW_3716_full:
### New IGT tests (5) ###
* igt@gem_dumb_buffer@create-clear:
- Statuses : 5 crash(s) 1 pass(s) 1 timeout(s)
- Exec time: [0.83, 396.77] s
* igt@gem_dumb_buffer@create-invalid-nonaligned:
- Statuses : 7 pass(s)
- Exec time: [0.0] s
* igt@gem_dumb_buffer@create-valid-dumb:
- Statuses : 7 pass(s)
- Exec time: [0.0] s
* igt@gem_dumb_buffer@create-valid-nonaligned:
- Statuses : 6 pass(s)
- Exec time: [0.0] s
* igt@gem_dumb_buffer@invalid-bpp:
- Statuses : 7 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_3716_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_persistence@vcs1-queued:
- shard-iclb: [PASS][10] -> [SKIP][11] ([fdo#109276] / [fdo#112080]) +1 similar issue
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@gem_ctx_persistence@vcs1-queued.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb5/igt@gem_ctx_persistence@vcs1-queued.html
* igt@gem_ctx_switch@vcs1:
- shard-iclb: [PASS][12] -> [SKIP][13] ([fdo#112080]) +9 similar issues
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_ctx_switch@vcs1.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb5/igt@gem_ctx_switch@vcs1.html
* igt@gem_eio@in-flight-suspend:
- shard-tglb: [PASS][14] -> [INCOMPLETE][15] ([fdo#111832] / [fdo#111850] / [fdo#112081])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@gem_eio@in-flight-suspend.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb8/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@smoke:
- shard-iclb: [PASS][16] -> [SKIP][17] ([fdo#110854])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@gem_exec_balancer@smoke.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb5/igt@gem_exec_balancer@smoke.html
* igt@gem_exec_schedule@preempt-queue-blt:
- shard-tglb: [PASS][18] -> [INCOMPLETE][19] ([fdo#111677])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb7/igt@gem_exec_schedule@preempt-queue-blt.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb6/igt@gem_exec_schedule@preempt-queue-blt.html
* igt@gem_exec_schedule@preempt-queue-bsd1:
- shard-iclb: [PASS][20] -> [SKIP][21] ([fdo#109276]) +18 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@gem_exec_schedule@preempt-queue-bsd1.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb5/igt@gem_exec_schedule@preempt-queue-bsd1.html
* igt@gem_exec_schedule@preemptive-hang-bsd:
- shard-iclb: [PASS][22] -> [SKIP][23] ([fdo#112146]) +2 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb8/igt@gem_exec_schedule@preemptive-hang-bsd.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb1/igt@gem_exec_schedule@preemptive-hang-bsd.html
* igt@gem_mmap_gtt@hang:
- shard-tglb: [PASS][24] -> [INCOMPLETE][25] ([fdo#111998])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@gem_mmap_gtt@hang.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb6/igt@gem_mmap_gtt@hang.html
* igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive:
- shard-apl: [PASS][26] -> [TIMEOUT][27] ([fdo#112113])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-apl7/igt@gem_persistent_relocs@forked-interruptible-faulting-reloc-thrash-inactive.html
* igt@gem_softpin@noreloc-s3:
- shard-apl: [PASS][28] -> [DMESG-WARN][29] ([fdo#108566]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl7/igt@gem_softpin@noreloc-s3.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-apl4/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-snb: [PASS][30] -> [DMESG-WARN][31] ([fdo#111870])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-snb6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-hsw: [PASS][32] -> [DMESG-WARN][33] ([fdo#111870]) +1 similar issue
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw1/igt@gem_userptr_blits@sync-unmap-cycles.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-hsw7/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-a:
- shard-hsw: [PASS][34] -> [INCOMPLETE][35] ([fdo#103540]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw6/igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-a.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-hsw2/igt@kms_busy@extended-modeset-hang-oldfb-with-reset-render-pipe-a.html
* igt@kms_flip@flip-vs-suspend:
- shard-tglb: [PASS][36] -> [INCOMPLETE][37] ([fdo#111850] / [fdo#112031])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_flip@flip-vs-suspend.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-iclb: [PASS][38] -> [FAIL][39] ([fdo#103167]) +4 similar issues
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-stridechange:
- shard-tglb: [PASS][40] -> [FAIL][41] ([fdo#103167])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-stridechange.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d:
- shard-tglb: [PASS][42] -> [INCOMPLETE][43] ([fdo#111850])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-d.html
* igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
- shard-kbl: [PASS][44] -> [DMESG-WARN][45] ([fdo#108566]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl6/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-kbl7/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
* igt@kms_plane_lowres@pipe-a-tiling-y:
- shard-iclb: [PASS][46] -> [FAIL][47] ([fdo#103166])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-y.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb7/igt@kms_plane_lowres@pipe-a-tiling-y.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][48] -> [SKIP][49] ([fdo#109441]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb1/igt@kms_psr@psr2_cursor_render.html
#### Possible fixes ####
* igt@gem_ctx_persistence@vcs1-hostile-preempt:
- shard-iclb: [SKIP][50] ([fdo#109276] / [fdo#112080]) -> [PASS][51] +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb1/igt@gem_ctx_persistence@vcs1-hostile-preempt.html
* igt@gem_exec_create@forked:
- shard-tglb: [INCOMPLETE][52] ([fdo#108838] / [fdo#111747]) -> [PASS][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_create@forked.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb8/igt@gem_exec_create@forked.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-kbl: [INCOMPLETE][54] ([fdo#103665]) -> [PASS][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl7/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-kbl6/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_schedule@preempt-other-chain-bsd:
- shard-iclb: [SKIP][56] ([fdo#112146]) -> [PASS][57] +6 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain-bsd.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb7/igt@gem_exec_schedule@preempt-other-chain-bsd.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain-blt:
- shard-tglb: [INCOMPLETE][58] ([fdo#111606] / [fdo#111677]) -> [PASS][59] +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb5/igt@gem_exec_schedule@preempt-queue-contexts-chain-blt.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup:
- shard-hsw: [DMESG-WARN][60] ([fdo#111870]) -> [PASS][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-hsw1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy-gup.html
* igt@gem_userptr_blits@sync-unmap-cycles:
- shard-snb: [DMESG-WARN][62] ([fdo#111870]) -> [PASS][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-snb4/igt@gem_userptr_blits@sync-unmap-cycles.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-snb6/igt@gem_userptr_blits@sync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-context:
- shard-apl: [DMESG-WARN][64] ([fdo#108566]) -> [PASS][65] +3 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl6/igt@gem_workarounds@suspend-resume-context.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-apl3/igt@gem_workarounds@suspend-resume-context.html
* igt@i915_pm_dc@dc6-dpms:
- shard-iclb: [FAIL][66] ([fdo#111830 ]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_selftest@live_gt_timelines:
- shard-tglb: [INCOMPLETE][68] ([fdo#111831]) -> [PASS][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb4/igt@i915_selftest@live_gt_timelines.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb3/igt@i915_selftest@live_gt_timelines.html
* igt@kms_cursor_crc@pipe-b-cursor-128x42-random:
- shard-apl: [FAIL][70] ([fdo#103232]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-apl7/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
- shard-kbl: [FAIL][72] ([fdo#103232]) -> [PASS][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-kbl1/igt@kms_cursor_crc@pipe-b-cursor-128x42-random.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-kbl: [DMESG-WARN][74] ([fdo#108566]) -> [PASS][75] +5 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-kbl3/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt:
- shard-tglb: [FAIL][76] ([fdo#103167]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-iclb: [FAIL][78] ([fdo#103167]) -> [PASS][79] +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-tglb: [INCOMPLETE][80] ([fdo#111832] / [fdo#111850]) -> [PASS][81] +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_psr@psr2_sprite_blt:
- shard-iclb: [SKIP][82] ([fdo#109441]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb3/igt@kms_psr@psr2_sprite_blt.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb2/igt@kms_psr@psr2_sprite_blt.html
* igt@perf_pmu@busy-vcs1:
- shard-iclb: [SKIP][84] ([fdo#112080]) -> [PASS][85] +9 similar issues
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb8/igt@perf_pmu@busy-vcs1.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb4/igt@perf_pmu@busy-vcs1.html
* igt@prime_busy@hang-bsd2:
- shard-iclb: [SKIP][86] ([fdo#109276]) -> [PASS][87] +15 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb7/igt@prime_busy@hang-bsd2.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb4/igt@prime_busy@hang-bsd2.html
#### Warnings ####
* igt@gem_ctx_isolation@vcs1-nonpriv:
- shard-iclb: [SKIP][88] ([fdo#109276] / [fdo#112080]) -> [FAIL][89] ([fdo#111329]) +1 similar issue
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html
* igt@gem_ctx_isolation@vcs2-none:
- shard-tglb: [SKIP][90] ([fdo#111912] / [fdo#112080]) -> [SKIP][91] ([fdo#112080])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@gem_ctx_isolation@vcs2-none.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb9/igt@gem_ctx_isolation@vcs2-none.html
* igt@kms_atomic_transition@6x-modeset-transitions-nonblocking:
- shard-tglb: [SKIP][92] ([fdo#112016 ] / [fdo#112021 ]) -> [SKIP][93] ([fdo#112021 ])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb6/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking.html
* igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing:
- shard-tglb: [SKIP][94] ([fdo#112021 ]) -> [SKIP][95] ([fdo#112016 ] / [fdo#112021 ])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_7352/shard-tglb9/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/shard-tglb8/igt@kms_atomic_transition@6x-modeset-transitions-nonblocking-fencing.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108838]: https://bugs.freedesktop.org/show_bug.cgi?id=108838
[fdo#109276]: https://bugs.freedesktop.org/s
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3716/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-11-17 1:12 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-15 15:38 [igt-dev] [PATCH i-g-t] tests/dumb_buffer: Tests for creation Ramalingam C
2019-11-15 15:44 ` Chris Wilson
2019-11-15 16:22 ` [igt-dev] ✗ GitLab.Pipeline: failure for " Patchwork
2019-11-15 16:28 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2019-11-17 1:12 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox