[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-devel] [seabios baseline-only test] 68159: tolerable FAIL



This run is configured for baseline tests only.

flight 68159 seabios real [real]
http://osstest.xs.citrite.net/~osstest/testlogs/logs/68159/

Failures :-/ but no regressions.

Regressions which are regarded as allowable (not blocking):
 test-amd64-amd64-xl-qemuu-win7-amd64 16 guest-stop             fail like 68076
 test-amd64-i386-xl-qemuu-win7-amd64 16 guest-stop              fail like 68076
 test-amd64-amd64-qemuu-nested-intel 16 debian-hvm-install/l1/l2 fail like 68076
 test-amd64-i386-xl-qemuu-winxpsp3-vcpus1  9 windows-install    fail like 68076

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-amd64-qemuu-nested-amd 16 debian-hvm-install/l1/l2  fail never pass

version targeted for testing:
 seabios              7b7b49e2898613dd6cf82473fa9b702541f218d6
baseline version:
 seabios              b98c6586c0c3d519359d6e751ecb3e637e82dbcb

Last test of basis    68076  2016-11-21 19:16:35 Z   13 days
Testing same since    68159  2016-12-04 21:19:27 Z    0 days    1 attempts

------------------------------------------------------------
People who touched revisions under test:
  Kevin O'Connor <kevin@xxxxxxxxxxxx>
  Stefan Berger <stefanb@xxxxxxxxxxxxxxxxxx>

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                 pass    
 test-amd64-amd64-qemuu-nested-amd                            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-win7-amd64                         fail    
 test-amd64-i386-xl-qemuu-win7-amd64                          fail    
 test-amd64-amd64-qemuu-nested-intel                          fail    
 test-amd64-i386-qemuu-rhel6hvm-intel                         pass    
 test-amd64-i386-xl-qemuu-winxpsp3-vcpus1                     fail    
 test-amd64-amd64-xl-qemuu-winxpsp3                           pass    
 test-amd64-i386-xl-qemuu-winxpsp3                            pass    


------------------------------------------------------------
sg-report-flight on osstest.xs.citrite.net
logs: /home/osstest/logs
images: /home/osstest/images

Logs, config files, etc. are available at
    http://osstest.xs.citrite.net/~osstest/testlogs/logs

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


Push not applicable.

------------------------------------------------------------
commit 7b7b49e2898613dd6cf82473fa9b702541f218d6
Author: Stefan Berger <stefanb@xxxxxxxxxxxxxxxxxx>
Date:   Wed Nov 23 11:19:43 2016 -0500

    tpm: Log TPM 2 digest structure in little endian format
    
    The parameters for extending the PCRs of a TPM 2 are written in
    big endian format when sent to the TPM. However, the log needs
    to be written in little endian format, so we cannot just copy
    the structure into the log as-is. To support the little endian
    format in the log, we extend the function writing the TPM 2
    digest structure with a parameter that allows us to choose the
    endianess of a few parameters. We then rewrite the digest structure
    in little endian format for the log.
    
    Signed-off-by: Stefan Berger <stefanb@xxxxxxxxxxxxxxxxxx>

commit 846fd319e0d7d31b3cd269863177d7c8285fcd2e
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Wed Aug 10 18:15:13 2016 -0400

    tpm: Rework tpm_build_and_send_cmd() into tpm_simple_cmd()
    
    Instead of passing an arbitrary buffer as a parameter to
    tpm_build_and_send_cmd(), just support the simpler case of a parameter
    that is only 0, 1, or 2 bytes in length.  This allows the callers to
    pass the parameter directly and not worry about the big-endian
    encoding.  Rename the function to tpm_simple_cmd().
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 538d9b7110c178e02f02b029416952f3eb42bc5d
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Wed Aug 10 17:45:05 2016 -0400

    tpm: Don't call tpm_build_and_send_cmd() from tpm20_stirrandom()
    
    Instead call tpmhw_transmit() directly.
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 9ec57de1db32fc75d2acd740d4a3bf47cdf023e6
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Sun Jan 10 10:53:24 2016 -0500

    acpi: Generalize find_fadt() and find_tcpa_by_rsdp() into find_acpi_table()
    
    The find_fadt() and find_tcpa_by_rsdp() functions are very similar.
    Create a new find_acpi_table() function and replace the two functions
    with this new function.
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 0166993d3c47c0c9a69175b5c24166e74f9d5b07
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Wed Aug 10 16:15:43 2016 -0400

    tpm: Move code around in tcgbios.c to keep like code together
    
    No code changes; just code movement.
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit d468d595a43ab91c00e064e06683f4c75f52a88e
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Wed Aug 10 16:23:02 2016 -0400

    tpm: Don't call tpm_set_failure() from tpm12_get_capability()
    
    In the event of a failure in the low-level tpm12_get_capability()
    code, just return an error code.  The caller can shutdown the TPM if
    needed - the only place where that is needed is during a failure in
    tpm12_determine_timeouts().
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

commit 2f975709df602f0fb940355bea0853243fb8c08b
Author: Kevin O'Connor <kevin@xxxxxxxxxxxx>
Date:   Wed Aug 10 15:25:28 2016 -0400

    tpm: Add comment banners to tcg.c separating major parts of spec
    
    No code changes; just code movement.
    
    Signed-off-by: Kevin O'Connor <kevin@xxxxxxxxxxxx>

_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
https://lists.xen.org/xen-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.