All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xen-devel] OSStest priorities
@ 2019-11-07 16:44 Jürgen Groß
  2019-11-07 16:52 ` Ian Jackson
  2019-11-07 17:36 ` Sander Eikelenboom
  0 siblings, 2 replies; 5+ messages in thread
From: Jürgen Groß @ 2019-11-07 16:44 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel

Hi Ian,

in the Xen community call we agreed to try to speed up OSStest for
xen-unstable in order to make better progress with the 4.13 release.

Could you please suspend testing for Xen 4.10 and older (Jan agreed on
that), and disable the Linux kernel tests which are currently failing
(including the bisecting)?

This should free lots of resources in OSStest reducing xen-unstable
test latencies.


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] OSStest priorities
  2019-11-07 16:44 [Xen-devel] OSStest priorities Jürgen Groß
@ 2019-11-07 16:52 ` Ian Jackson
  2019-11-07 17:36 ` Sander Eikelenboom
  1 sibling, 0 replies; 5+ messages in thread
From: Ian Jackson @ 2019-11-07 16:52 UTC (permalink / raw)
  To: Jürgen Groß; +Cc: xen-devel

Jürgen Groß writes ("OSStest priorities"):
> in the Xen community call we agreed to try to speed up OSStest for
> xen-unstable in order to make better progress with the 4.13 release.
> 
> Could you please suspend testing for Xen 4.10 and older (Jan agreed on
> that), and disable the Linux kernel tests which are currently failing
> (including the bisecting)?
> 
> This should free lots of resources in OSStest reducing xen-unstable
> test latencies.

No problem.  Done.  (I didn't cancel the in-progress flights, so a few
reports will still appear for these suspended branches.)

I will keep an eye on it.

Regards,
Ian.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] OSStest priorities
  2019-11-07 16:44 [Xen-devel] OSStest priorities Jürgen Groß
  2019-11-07 16:52 ` Ian Jackson
@ 2019-11-07 17:36 ` Sander Eikelenboom
  2019-11-07 17:52   ` [Xen-devel] [OSSTEST PATCH] make-flight: Drop all win10 tests in all flights Ian Jackson
  1 sibling, 1 reply; 5+ messages in thread
From: Sander Eikelenboom @ 2019-11-07 17:36 UTC (permalink / raw)
  To: Jürgen Groß, Ian Jackson; +Cc: xen-devel

On 07/11/2019 17:44, Jürgen Groß wrote:
> Hi Ian,
> 
> in the Xen community call we agreed to try to speed up OSStest for
> xen-unstable in order to make better progress with the 4.13 release.
> 
> Could you please suspend testing for Xen 4.10 and older (Jan agreed on
> that), and disable the Linux kernel tests which are currently failing
> (including the bisecting)?
> 
> This should free lots of resources in OSStest reducing xen-unstable
> test latencies.
> 
> 
> Juergen
> 
> 

The following tests have quite a long timeout and will always fail,
(although last time I manually checked windows 10 actually installed fine
on a HVM on my machine).

 test-amd64-amd64-xl-qemuu-win10-i386 10 windows-install        fail never pass
 test-amd64-i386-xl-qemut-win10-i386 10 windows-install         fail never pass
 test-amd64-i386-xl-qemuu-win10-i386 10 windows-install         fail never pass
 test-amd64-amd64-xl-qemut-win10-i386 10 windows-install        fail never pass

perhaps suspending these in all tree until the underlying install image is fixed
or replaced, would also free some more resources, also after the release.

--
Sander

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* [Xen-devel] [OSSTEST PATCH] make-flight: Drop all win10 tests in all flights
  2019-11-07 17:36 ` Sander Eikelenboom
@ 2019-11-07 17:52   ` Ian Jackson
  2019-11-07 18:55     ` Jürgen Groß
  0 siblings, 1 reply; 5+ messages in thread
From: Ian Jackson @ 2019-11-07 17:52 UTC (permalink / raw)
  To: xen-devel; +Cc: Jürgen Groß, Sander Eikelenboom, Ian Jackson

These are failing and have been for some time and it does not appear
that anyone has the capability to fix them.  Running them in these
circumstances seems wasteful.

Effect is to drop test-*-win10-* jobs (checked with
standalone-generate-dump-flight-runvars).

CC: Sander Eikelenboom <linux@eikelenboom.it>
CC: Jürgen Groß <jgross@suse.com>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
 make-flight | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make-flight b/make-flight
index be620c6d..b08431dc 100755
--- a/make-flight
+++ b/make-flight
@@ -327,7 +327,7 @@ do_hvm_win7_x64_tests () {
 
 do_hvm_win_2017_tests () {
   do_hvm_win_test_one ws16  ws16       amd64 guests_memsize=3584
-  do_hvm_win_test_one win10 win10v1703 i386  guests_memsize=3584
+# do_hvm_win_test_one win10 win10v1703 i386  guests_memsize=3584
 }
 
 do_hvm_debian_nested_tests () {
-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

* Re: [Xen-devel] [OSSTEST PATCH] make-flight: Drop all win10 tests in all flights
  2019-11-07 17:52   ` [Xen-devel] [OSSTEST PATCH] make-flight: Drop all win10 tests in all flights Ian Jackson
@ 2019-11-07 18:55     ` Jürgen Groß
  0 siblings, 0 replies; 5+ messages in thread
From: Jürgen Groß @ 2019-11-07 18:55 UTC (permalink / raw)
  To: Ian Jackson, xen-devel; +Cc: Sander Eikelenboom

On 07.11.19 18:52, Ian Jackson wrote:
> These are failing and have been for some time and it does not appear
> that anyone has the capability to fix them.  Running them in these
> circumstances seems wasteful.
> 
> Effect is to drop test-*-win10-* jobs (checked with
> standalone-generate-dump-flight-runvars).
> 
> CC: Sander Eikelenboom <linux@eikelenboom.it>
> CC: Jürgen Groß <jgross@suse.com>
> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>

Release-acked-by: Juergen Gross <jgross@suse.com>


Juergen

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel

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

end of thread, other threads:[~2019-11-07 18:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-07 16:44 [Xen-devel] OSStest priorities Jürgen Groß
2019-11-07 16:52 ` Ian Jackson
2019-11-07 17:36 ` Sander Eikelenboom
2019-11-07 17:52   ` [Xen-devel] [OSSTEST PATCH] make-flight: Drop all win10 tests in all flights Ian Jackson
2019-11-07 18:55     ` Jürgen Groß

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.