* [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner
@ 2018-11-27 13:22 Chris Wilson
2018-11-27 13:29 ` Petri Latvala
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2018-11-27 13:22 UTC (permalink / raw)
To: igt-dev; +Cc: Petri Latvala
The igt_runner sends a SIGTERM to ask the test to cleanly exit upon an
external timeout. It is useful to know what the code was doing when the
timeout occurred, just in case it was unexpectedly stuck. However, since
we use SIGTERM internally to marshal helper processes, we want to keep
SIGTERM quiet, and so opt to use SIGQUIT for the timeout request
instead.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Petri Latvala <petri.latvala@intel.com>
---
lib/igt_core.c | 27 +++++++++++++++++++++------
runner/executor.c | 8 ++++----
2 files changed, 25 insertions(+), 10 deletions(-)
diff --git a/lib/igt_core.c b/lib/igt_core.c
index e0989f538..64883d640 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -1852,14 +1852,29 @@ static struct {
static igt_exit_handler_t exit_handler_fn[MAX_EXIT_HANDLERS];
static bool exit_handler_disabled;
+static const struct {
+ int number;
+ const char *name;
+ size_t name_len;
+} handled_signals[] = {
#define SIGDEF(x) { x, #x, sizeof(#x) - 1 }
#define SILENT(x) { x, NULL, 0 }
-static const struct { int number; const char *name; size_t name_len; } handled_signals[] =
- { SILENT(SIGINT), SILENT(SIGHUP), SILENT(SIGTERM), SILENT(SIGQUIT),
- SILENT(SIGPIPE), SIGDEF(SIGABRT), SIGDEF(SIGSEGV), SIGDEF(SIGBUS),
- SIGDEF(SIGFPE) };
+
+ SILENT(SIGINT),
+ SILENT(SIGHUP),
+ SILENT(SIGPIPE),
+ SILENT(SIGTERM),
+
+ SIGDEF(SIGQUIT), /* used by igt_runner for its external timeout */
+
+ SIGDEF(SIGABRT),
+ SIGDEF(SIGSEGV),
+ SIGDEF(SIGBUS),
+ SIGDEF(SIGFPE)
+
#undef SILENT
#undef SIGDEF
+};
static int install_sig_handler(int sig_num, sighandler_t handler)
{
@@ -1940,15 +1955,15 @@ static void fatal_sig_handler(int sig)
__write_stderr(handled_signals[i].name,
handled_signals[i].name_len);
write_stderr(".\n");
+
+ print_backtrace_sig_safe();
}
if (crash_signal(sig)) {
/* Linux standard to return exit code as 128 + signal */
if (!failed_one)
igt_exitcode = 128 + sig;
-
failed_one = true;
- print_backtrace_sig_safe();
if (in_subtest)
exit_subtest("CRASH");
diff --git a/runner/executor.c b/runner/executor.c
index 4a0a1219a..4b5e01fdb 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -510,11 +510,11 @@ static int monitor_output(pid_t child,
switch (killed) {
case 0:
if (settings->log_level >= LOG_LEVEL_NORMAL) {
- printf("Timeout. Killing the current test with SIGTERM.\n");
+ printf("Timeout. Killing the current test with SIGQUIT.\n");
fflush(stdout);
}
- killed = SIGTERM;
+ killed = SIGQUIT;
if (!kill_child(killed, child))
return -1;
@@ -526,7 +526,7 @@ static int monitor_output(pid_t child,
watchdogs_set_timeout(120);
intervals_left = timeout_intervals = 1;
break;
- case SIGTERM:
+ case SIGQUIT:
if (settings->log_level >= LOG_LEVEL_NORMAL) {
printf("Timeout. Killing the current test with SIGKILL.\n");
fflush(stdout);
@@ -706,7 +706,7 @@ static int monitor_output(pid_t child,
aborting = true;
timeout = 2;
- killed = SIGTERM;
+ killed = SIGQUIT;
if (!kill_child(killed, child))
return -1;
--
2.20.0.rc1
_______________________________________________
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] lib: Show stacktrace when terminated by runner
2018-11-27 13:22 [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner Chris Wilson
@ 2018-11-27 13:29 ` Petri Latvala
2018-11-27 13:55 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2018-11-27 13:29 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
On Tue, Nov 27, 2018 at 01:22:16PM +0000, Chris Wilson wrote:
> The igt_runner sends a SIGTERM to ask the test to cleanly exit upon an
> external timeout. It is useful to know what the code was doing when the
> timeout occurred, just in case it was unexpectedly stuck. However, since
> we use SIGTERM internally to marshal helper processes, we want to keep
> SIGTERM quiet, and so opt to use SIGQUIT for the timeout request
> instead.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Petri Latvala <petri.latvala@intel.com>
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> ---
> lib/igt_core.c | 27 +++++++++++++++++++++------
> runner/executor.c | 8 ++++----
> 2 files changed, 25 insertions(+), 10 deletions(-)
>
> diff --git a/lib/igt_core.c b/lib/igt_core.c
> index e0989f538..64883d640 100644
> --- a/lib/igt_core.c
> +++ b/lib/igt_core.c
> @@ -1852,14 +1852,29 @@ static struct {
>
> static igt_exit_handler_t exit_handler_fn[MAX_EXIT_HANDLERS];
> static bool exit_handler_disabled;
> +static const struct {
> + int number;
> + const char *name;
> + size_t name_len;
> +} handled_signals[] = {
> #define SIGDEF(x) { x, #x, sizeof(#x) - 1 }
> #define SILENT(x) { x, NULL, 0 }
> -static const struct { int number; const char *name; size_t name_len; } handled_signals[] =
> - { SILENT(SIGINT), SILENT(SIGHUP), SILENT(SIGTERM), SILENT(SIGQUIT),
> - SILENT(SIGPIPE), SIGDEF(SIGABRT), SIGDEF(SIGSEGV), SIGDEF(SIGBUS),
> - SIGDEF(SIGFPE) };
> +
> + SILENT(SIGINT),
> + SILENT(SIGHUP),
> + SILENT(SIGPIPE),
> + SILENT(SIGTERM),
> +
> + SIGDEF(SIGQUIT), /* used by igt_runner for its external timeout */
> +
> + SIGDEF(SIGABRT),
> + SIGDEF(SIGSEGV),
> + SIGDEF(SIGBUS),
> + SIGDEF(SIGFPE)
> +
> #undef SILENT
> #undef SIGDEF
> +};
>
> static int install_sig_handler(int sig_num, sighandler_t handler)
> {
> @@ -1940,15 +1955,15 @@ static void fatal_sig_handler(int sig)
> __write_stderr(handled_signals[i].name,
> handled_signals[i].name_len);
> write_stderr(".\n");
> +
> + print_backtrace_sig_safe();
> }
>
> if (crash_signal(sig)) {
> /* Linux standard to return exit code as 128 + signal */
> if (!failed_one)
> igt_exitcode = 128 + sig;
> -
> failed_one = true;
> - print_backtrace_sig_safe();
>
> if (in_subtest)
> exit_subtest("CRASH");
> diff --git a/runner/executor.c b/runner/executor.c
> index 4a0a1219a..4b5e01fdb 100644
> --- a/runner/executor.c
> +++ b/runner/executor.c
> @@ -510,11 +510,11 @@ static int monitor_output(pid_t child,
> switch (killed) {
> case 0:
> if (settings->log_level >= LOG_LEVEL_NORMAL) {
> - printf("Timeout. Killing the current test with SIGTERM.\n");
> + printf("Timeout. Killing the current test with SIGQUIT.\n");
> fflush(stdout);
> }
>
> - killed = SIGTERM;
> + killed = SIGQUIT;
> if (!kill_child(killed, child))
> return -1;
>
> @@ -526,7 +526,7 @@ static int monitor_output(pid_t child,
> watchdogs_set_timeout(120);
> intervals_left = timeout_intervals = 1;
> break;
> - case SIGTERM:
> + case SIGQUIT:
> if (settings->log_level >= LOG_LEVEL_NORMAL) {
> printf("Timeout. Killing the current test with SIGKILL.\n");
> fflush(stdout);
> @@ -706,7 +706,7 @@ static int monitor_output(pid_t child,
>
> aborting = true;
> timeout = 2;
> - killed = SIGTERM;
> + killed = SIGQUIT;
> if (!kill_child(killed, child))
> return -1;
>
> --
> 2.20.0.rc1
>
_______________________________________________
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: failure for lib: Show stacktrace when terminated by runner
2018-11-27 13:22 [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner Chris Wilson
2018-11-27 13:29 ` Petri Latvala
@ 2018-11-27 13:55 ` Patchwork
2018-11-27 14:02 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2018-11-27 15:28 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-27 13:55 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib: Show stacktrace when terminated by runner
URL : https://patchwork.freedesktop.org/series/53078/
State : failure
== Summary ==
= CI Bug Log - changes from IGT_4730 -> IGTPW_2101 =
== Summary - FAILURE ==
Serious unknown changes coming with IGTPW_2101 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_2101, 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/53078/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_2101:
=== IGT changes ===
==== Possible regressions ====
igt@gem_exec_suspend@basic-s4-devices:
fi-ivb-3520m: PASS -> FAIL
== Known issues ==
Here are the changes found in IGTPW_2101 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_ctx_create@basic-files:
fi-bsw-kefka: PASS -> FAIL (fdo#108656)
igt@kms_pipe_crc_basic@read-crc-pipe-a:
fi-byt-clapper: PASS -> FAIL (fdo#107362)
==== Possible fixes ====
igt@gem_exec_suspend@basic-s3:
fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS
igt@i915_selftest@live_contexts:
fi-bsw-kefka: DMESG-FAIL (fdo#108626, fdo#108656) -> PASS
igt@kms_chamelium@hdmi-hpd-fast:
{fi-kbl-7500u}: FAIL -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
fi-byt-clapper: FAIL (fdo#107362, fdo#103191) -> PASS +1
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718
fdo#108626 https://bugs.freedesktop.org/show_bug.cgi?id=108626
fdo#108656 https://bugs.freedesktop.org/show_bug.cgi?id=108656
== Participating hosts (50 -> 46) ==
Additional (2): fi-cfl-8109u fi-pnv-d510
Missing (6): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600
== Build changes ==
* IGT: IGT_4730 -> IGTPW_2101
CI_DRM_5208: e556a1602bef92792a069e4fe1cb2c851efb2294 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/
IGT_4730: a6b514d242bddd9457f04bb25cde0ddf85032b65 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/issues.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.BAT: success for lib: Show stacktrace when terminated by runner
2018-11-27 13:22 [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner Chris Wilson
2018-11-27 13:29 ` Petri Latvala
2018-11-27 13:55 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
@ 2018-11-27 14:02 ` Patchwork
2018-11-27 15:28 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-27 14:02 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib: Show stacktrace when terminated by runner
URL : https://patchwork.freedesktop.org/series/53078/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4730 -> IGTPW_2101 =
== Summary - SUCCESS ==
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/53078/revisions/1/mbox/
== Known issues ==
Here are the changes found in IGTPW_2101 that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_ctx_create@basic-files:
fi-bsw-kefka: PASS -> FAIL (fdo#108656)
igt@gem_exec_suspend@basic-s4-devices:
fi-ivb-3520m: PASS -> FAIL (fdo#108880)
igt@kms_pipe_crc_basic@read-crc-pipe-a:
fi-byt-clapper: PASS -> FAIL (fdo#107362)
==== Possible fixes ====
igt@gem_exec_suspend@basic-s3:
fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS
igt@i915_selftest@live_contexts:
fi-bsw-kefka: DMESG-FAIL (fdo#108626, fdo#108656) -> PASS
igt@kms_chamelium@hdmi-hpd-fast:
{fi-kbl-7500u}: FAIL -> PASS
igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
fi-byt-clapper: FAIL (fdo#103191, fdo#107362) -> PASS +1
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362
fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718
fdo#108626 https://bugs.freedesktop.org/show_bug.cgi?id=108626
fdo#108656 https://bugs.freedesktop.org/show_bug.cgi?id=108656
fdo#108880 https://bugs.freedesktop.org/show_bug.cgi?id=108880
== Participating hosts (50 -> 46) ==
Additional (2): fi-cfl-8109u fi-pnv-d510
Missing (6): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600
== Build changes ==
* IGT: IGT_4730 -> IGTPW_2101
CI_DRM_5208: e556a1602bef92792a069e4fe1cb2c851efb2294 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/
IGT_4730: a6b514d242bddd9457f04bb25cde0ddf85032b65 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/issues.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: success for lib: Show stacktrace when terminated by runner
2018-11-27 13:22 [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner Chris Wilson
` (2 preceding siblings ...)
2018-11-27 14:02 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2018-11-27 15:28 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2018-11-27 15:28 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: lib: Show stacktrace when terminated by runner
URL : https://patchwork.freedesktop.org/series/53078/
State : success
== Summary ==
= CI Bug Log - changes from IGT_4730_full -> IGTPW_2101_full =
== Summary - WARNING ==
Minor unknown changes coming with IGTPW_2101_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_2101_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/53078/revisions/1/mbox/
== Possible new issues ==
Here are the unknown changes that may have been introduced in IGTPW_2101_full:
=== IGT changes ===
==== Warnings ====
igt@kms_universal_plane@disable-primary-vs-flip-pipe-b:
shard-snb: SKIP -> PASS +3
igt@pm_rc6_residency@rc6-accuracy:
shard-kbl: SKIP -> PASS
== Known issues ==
Here are the changes found in IGTPW_2101_full that come from known issues:
=== IGT changes ===
==== Issues hit ====
igt@gem_ctx_switch@basic-default-heavy:
shard-apl: PASS -> INCOMPLETE (fdo#103927)
igt@gem_ppgtt@blt-vs-render-ctx0:
shard-kbl: PASS -> INCOMPLETE (fdo#106887, fdo#103665, fdo#106023)
igt@i915_suspend@shrink:
shard-snb: NOTRUN -> DMESG-WARN (fdo#108784)
shard-hsw: NOTRUN -> DMESG-WARN (fdo#108784)
igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
shard-glk: PASS -> INCOMPLETE (fdo#103359, k.org#198133)
igt@kms_busy@extended-modeset-hang-newfb-with-reset-render-b:
shard-snb: SKIP -> DMESG-WARN (fdo#107956)
igt@kms_cursor_crc@cursor-128x128-dpms:
shard-kbl: PASS -> FAIL (fdo#103232)
igt@kms_cursor_crc@cursor-128x128-sliding:
shard-apl: PASS -> FAIL (fdo#103232) +1
igt@kms_cursor_crc@cursor-128x42-random:
shard-glk: PASS -> FAIL (fdo#103232)
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
shard-apl: PASS -> FAIL (fdo#103167)
shard-kbl: PASS -> FAIL (fdo#103167)
igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
shard-glk: PASS -> FAIL (fdo#103167) +4
igt@kms_plane@pixel-format-pipe-c-planes:
shard-apl: PASS -> FAIL (fdo#103166) +2
igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max:
shard-glk: PASS -> FAIL (fdo#108145)
igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
shard-glk: NOTRUN -> FAIL (fdo#108145)
igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
shard-glk: PASS -> FAIL (fdo#103166) +1
igt@kms_plane_multiple@atomic-pipe-c-tiling-yf:
shard-kbl: PASS -> FAIL (fdo#103166) +1
igt@kms_properties@connector-properties-atomic:
shard-hsw: NOTRUN -> FAIL (fdo#108642)
igt@pm_sseu@full-enable:
shard-snb: SKIP -> INCOMPLETE (fdo#107469, fdo#105411)
==== Possible fixes ====
igt@gem_ctx_isolation@bcs0-s3:
shard-glk: INCOMPLETE (fdo#103359, k.org#198133) -> PASS
igt@gem_exec_flush@basic-uc-pro-default:
shard-snb: INCOMPLETE (fdo#105411) -> PASS
igt@kms_ccs@pipe-b-crc-sprite-planes-basic:
shard-glk: FAIL (fdo#108145) -> PASS
igt@kms_color@pipe-b-gamma:
shard-apl: INCOMPLETE (fdo#103927) -> PASS
igt@kms_cursor_crc@cursor-256x256-random:
shard-glk: FAIL (fdo#103232) -> PASS +5
igt@kms_cursor_crc@cursor-256x256-suspend:
shard-kbl: FAIL (fdo#103232, fdo#103191) -> PASS
igt@kms_cursor_crc@cursor-256x85-sliding:
shard-kbl: FAIL (fdo#103232) -> PASS +3
igt@kms_cursor_crc@cursor-64x21-random:
shard-apl: FAIL (fdo#103232) -> PASS +5
igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
shard-hsw: FAIL (fdo#105767) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-render:
shard-kbl: FAIL (fdo#103167) -> PASS +1
shard-apl: FAIL (fdo#103167) -> PASS
igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
shard-glk: FAIL (fdo#103167) -> PASS +3
igt@kms_plane_multiple@atomic-pipe-a-tiling-y:
shard-glk: FAIL (fdo#103166) -> PASS +5
igt@kms_plane_multiple@atomic-pipe-a-tiling-yf:
shard-kbl: FAIL (fdo#103166) -> PASS +2
igt@kms_plane_multiple@atomic-pipe-b-tiling-x:
shard-apl: FAIL (fdo#103166) -> PASS +1
igt@kms_setmode@basic:
shard-kbl: FAIL (fdo#99912) -> PASS
fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167
fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191
fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232
fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359
fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927
fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411
fdo#105767 https://bugs.freedesktop.org/show_bug.cgi?id=105767
fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023
fdo#106887 https://bugs.freedesktop.org/show_bug.cgi?id=106887
fdo#107469 https://bugs.freedesktop.org/show_bug.cgi?id=107469
fdo#107956 https://bugs.freedesktop.org/show_bug.cgi?id=107956
fdo#108145 https://bugs.freedesktop.org/show_bug.cgi?id=108145
fdo#108642 https://bugs.freedesktop.org/show_bug.cgi?id=108642
fdo#108784 https://bugs.freedesktop.org/show_bug.cgi?id=108784
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 (7 -> 5) ==
Missing (2): shard-skl shard-iclb
== Build changes ==
* IGT: IGT_4730 -> IGTPW_2101
CI_DRM_5208: e556a1602bef92792a069e4fe1cb2c851efb2294 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2101: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/
IGT_4730: a6b514d242bddd9457f04bb25cde0ddf85032b65 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2101/shards.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:[~2018-11-27 15:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-27 13:22 [igt-dev] [PATCH i-g-t] lib: Show stacktrace when terminated by runner Chris Wilson
2018-11-27 13:29 ` Petri Latvala
2018-11-27 13:55 ` [igt-dev] ✗ Fi.CI.BAT: failure for " Patchwork
2018-11-27 14:02 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2018-11-27 15:28 ` [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