xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [seabios test] 62149: regressions - FAIL
@ 2015-09-21 14:48 osstest service owner
  0 siblings, 0 replies; only message in thread
From: osstest service owner @ 2015-09-21 14:48 UTC (permalink / raw)
  To: xen-devel, osstest-admin

flight 62149 seabios real [real]
http://logs.test-lab.xenproject.org/osstest/logs/62149/

Regressions :-(

Tests which did not succeed and are blocking,
including tests which could not be run:
 test-amd64-i386-xl-qemuu-debianhvm-amd64-xsm 18 guest-start.2 fail REGR. vs. 62000

Regressions which are regarded as allowable (not blocking):
 test-amd64-amd64-xl-qemuu-win7-amd64 17 guest-stop             fail like 62000

Tests which did not succeed, but are not blocking:
 test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass
 test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm 10 migrate-support-check fail never pass
 test-amd64-i386-xl-qemuu-win7-amd64 17 guest-stop              fail never pass

version targeted for testing:
 seabios              423542e5669732ab426fb0bc5798f004cb0bb3d6
baseline version:
 seabios              e4d2b8ce5db86bd56efdaf64b974925bd7a7b249

Last test of basis    62000  2015-09-14 14:10:13 Z    7 days
Testing same since    62149  2015-09-19 00:11:20 Z    2 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Kevin O'Connor <kevin@koconnor.net>

jobs:
 build-amd64-xsm                                              pass    
 build-i386-xsm                                               pass    
 build-amd64                                                  pass    
 build-i386                                                   pass    
 build-amd64-libvirt                                          pass    
 build-i386-libvirt                                           pass    
 build-amd64-pvops                                            pass    
 build-i386-pvops                                             pass    
 test-amd64-amd64-libvirt-qemuu-debianhvm-amd64-xsm           pass    
 test-amd64-i386-libvirt-qemuu-debianhvm-amd64-xsm            pass    
 test-amd64-amd64-xl-qemuu-debianhvm-amd64-xsm                pass    
 test-amd64-i386-xl-qemuu-debianhvm-amd64-xsm                 fail    
 test-amd64-i386-qemuu-rhel6hvm-amd                           pass    
 test-amd64-amd64-xl-qemuu-debianhvm-amd64                    pass    
 test-amd64-i386-xl-qemuu-debianhvm-amd64                     pass    
 test-amd64-amd64-xl-qemuu-ovmf-amd64                         pass    
 test-amd64-i386-xl-qemuu-ovmf-amd64                          pass    
 test-amd64-amd64-xl-qemuu-win7-amd64                         fail    
 test-amd64-i386-xl-qemuu-win7-amd64                          fail    
 test-amd64-i386-qemuu-rhel6hvm-intel                         pass    
 test-amd64-i386-xl-qemuu-winxpsp3-vcpus1                     pass    
 test-amd64-amd64-xl-qemuu-winxpsp3                           pass    
 test-amd64-i386-xl-qemuu-winxpsp3                            pass    


------------------------------------------------------------
sg-report-flight on osstest.test-lab.xenproject.org
logs: /home/logs/logs
images: /home/logs/images

Logs, config files, etc. are available at
    http://logs.test-lab.xenproject.org/osstest/logs

Explanation of these reports, and of osstest in general, is at
    http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README.email;hb=master
    http://xenbits.xen.org/gitweb/?p=osstest.git;a=blob;f=README;hb=master

Test harness code can be found at
    http://xenbits.xen.org/gitweb?p=osstest.git;a=summary


Not pushing.

------------------------------------------------------------
commit 423542e5669732ab426fb0bc5798f004cb0bb3d6
Author: Kevin O'Connor <kevin@koconnor.net>
Date:   Fri Sep 11 16:19:02 2015 -0400

    Use transition32_nmi_off from call32() and call16_back()
    
    The call32() and call16_back() functions will always disable NMI and
    enable a20 (via the call32_prep() function) so it is safe to use the
    _nmi_off variant of transition32.
    
    Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

commit 63766c43f1242b48fcacf616280777fd0388a168
Author: Kevin O'Connor <kevin@koconnor.net>
Date:   Fri Sep 11 16:15:23 2015 -0400

    Unify call32_sloppy() and call32()
    
    Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

commit 46a346e7dbf41ab6b7813d7356840d5bd434d99f
Author: Kevin O'Connor <kevin@koconnor.net>
Date:   Fri Sep 11 16:07:59 2015 -0400

    Unify inline assembler in variants of call16 functions
    
    The assembler between call16(), call16big() and call16_sloppy() are
    very similar.  Rework the functions so that a single version of the
    inline assembly can be used for all variants.
    
    Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

commit 4c568d83d4fac6c7431ff94282104429af3680e9
Author: Kevin O'Connor <kevin@koconnor.net>
Date:   Sun Sep 13 10:03:12 2015 -0400

    Rename Call32Data to Call16Data
    
    The variable stores information on how and what to restore during a
    call to 16bit code, so Call16Data is a better name.
    
    Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

commit 25eb06127206f376c21bb1b9f62bfbbdbae574e0
Author: Kevin O'Connor <kevin@koconnor.net>
Date:   Fri Sep 11 15:38:43 2015 -0400

    Unify smm/sloppy variants of call32_prep/post and call16_helper
    
    The "smm" and "sloppy" variants of the 16bit to 32bit trampoline
    backup/restore code are very similar.  They can be unified into a
    single copy of each function.
    
    Signed-off-by: Kevin O'Connor <kevin@koconnor.net>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-09-21 14:48 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-21 14:48 [seabios test] 62149: regressions - FAIL osstest service owner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).