[oe-commits] [openembedded-core] branch sumo updated (6637f40 -> 31f0c5e)

git at git.openembedded.org git at git.openembedded.org
Sun Dec 16 14:31:56 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a change to branch sumo
in repository openembedded-core.

    from 6637f40  build-appliance-image: Update to sumo head revision
     add 1c61f30  scripts/runqemu: Replace subprocess.run() for compatibilty
     add d3c052e  scripts/runqemu: Tidy up lock handling code
     add d3b3c55  scripts/runqemu: Improve lockfile handling for python with close_fd=True
     add 65403bb  oeqa/selftest/signing: Skip tests if gpg isn't found
     add c5d68a2  oeqa/selftest/signing: Allow tests not to need gpg on the host
     add 51989db  oeqa/selftest/signing: Use do_populate_lic target instead of do_package
     add e7c0d29  oeqa/selftest/case: Use bb.utils.remove() instead of shutil.remove()
     add 60b58e9  oeqa/selftest/buildoptions: Improve ccache test failure output
     add 0ea441a  oeqa/utils/commands: Add extra qemu failure logging
     add b8a9eec  oeqa/utils/qemurunner: Fix python ResourceWarning for unclosed file
     add 600e71e  oeqa/utils/commands: Avoid log message duplication
     add baa8313  oeqa/qemurunner: Remove resource python warnings
     add b729a46  oeqa/selftest/buildoptions: Improve ccache test
     add d5ce381  oeqa/selftest/buildoptions: Ensure diskmon tests run consistently
     add edd2ecb  oeqa/oelib/path: don't leak temporary directories
     add 6f2bb2c  oeqa/selftest/runqemu: Improve testcase failure handling
     add 48979ff  oeqa/utils/qemurunner: Avoid tracebacks on closed files
     add d392523  oeqa: don't litter /tmp with temporary directories
     add d936faa  oeqa/selftest/esdk: run selftest inside workdir not /tmp
     add f9ab10b  oeqa/loader: Fix deprecation warning
     add 682d7b2  oeqa/utils/commands: Avoid unclosed file warnings
     add 351a7b7  oeqa/selftest/context: Replace deprecated imp module usage
     add 7eb1f0b  oeqa/utils/qemurunner.py: Fix python regex warnings
     add 9c4c3c8  oeqa/selftest/context: Improve log file handling
     add 4c53aac  oeqa/core/runner: Improve test case comparision
     add bcb2948  oeqa/runner: Ensure we don't print misleading results output
     add bb9a85e  oeqa/core/threaded: Remove in favour of using concurrenttests
     add ab271b4  oeqa/runner: Simplify code
     add 02449e8  oeqa: Remove xmlrunner
     add bc44418  oeqa/core/runner: refactor for OEQA to write json testresult
     add 0455114  oeqa/core/runner: write testresult to json files
     add 526ceab  oeqa/runtime/ptest: Inject results+logs into stored json results file
     add 5942318  oeqa/runner: Always show a summary of success/fail/error/skip counts
     add 2cc07ab  oeqa/runner: Sort the test result output by result class
     add a952185  oeqa/selftest/context: write testresult to json files
     add 2b8b47e  testimage.bbclass: write testresult to json files
     add eefb079  testsdk.bbclass: write testresult to json files
     add 3b69099  oeqa/selftest: Improvements to the json logging
     add 9f2e396  oeqa/selftest: Standardize json logging output directory
     add 32c9169  oeqa/utils/metadata: Allow to function without the git module
     add f49ab8b  image-buildinfo,oeqa/selftest/containerimage: Ensure image-buildinfo doesn't break tests
     add 170a601  oeqa/selftest/esdk: Ensure parent directory exists
     add c9786ad  default-versions.inc: Make PREFERRED_VERSION_openssl* overwritable
     add 2c60908  oeqa/selftest/esdk: Fix typo causing test failure
     add fd07da4  testimage: Improvements to the json logging
     add 31f0c5e  testsdk: Improvements to the json logging

No new revisions were added by this update.

Summary of changes:
 meta-selftest/recipes-test/delay/delay.bb          |  12 +
 meta/classes/image-buildinfo.bbclass               |   2 +
 meta/classes/testimage.bbclass                     |  31 ++-
 meta/classes/testsdk.bbclass                       |  40 ++-
 meta/conf/distro/include/default-versions.inc      |   6 +-
 meta/lib/oeqa/core/context.py                      |   1 -
 meta/lib/oeqa/core/decorator/depends.py            |   9 +-
 meta/lib/oeqa/core/decorator/oetimeout.py          |  40 +--
 meta/lib/oeqa/core/loader.py                       |   2 +-
 meta/lib/oeqa/core/runner.py                       | 186 +++++++-------
 .../core/tests/cases/loader/threaded/threaded.py   |  12 -
 .../tests/cases/loader/threaded/threaded_alone.py  |   8 -
 .../cases/loader/threaded/threaded_depends.py      |  10 -
 .../tests/cases/loader/threaded/threaded_module.py |  12 -
 meta/lib/oeqa/core/tests/common.py                 |  10 -
 meta/lib/oeqa/core/tests/test_data.py              |   4 +-
 meta/lib/oeqa/core/tests/test_decorators.py        |  12 -
 meta/lib/oeqa/core/tests/test_loader.py            |  30 +--
 meta/lib/oeqa/core/threaded.py                     | 275 ---------------------
 meta/lib/oeqa/runtime/cases/ptest.py               |  21 +-
 meta/lib/oeqa/sdk/context.py                       |   5 +-
 meta/lib/oeqa/selftest/case.py                     |   4 +-
 meta/lib/oeqa/selftest/cases/buildoptions.py       |  12 +-
 meta/lib/oeqa/selftest/cases/containerimage.py     |   1 +
 meta/lib/oeqa/selftest/cases/eSDK.py               |  14 +-
 meta/lib/oeqa/selftest/cases/oelib/path.py         |  10 +-
 meta/lib/oeqa/selftest/cases/runqemu.py            |  32 ++-
 meta/lib/oeqa/selftest/cases/signing.py            |  80 ++++--
 meta/lib/oeqa/selftest/context.py                  |  45 +++-
 meta/lib/oeqa/utils/buildproject.py                |   3 +-
 meta/lib/oeqa/utils/commands.py                    |  11 +-
 meta/lib/oeqa/utils/metadata.py                    |  17 +-
 meta/lib/oeqa/utils/qemurunner.py                  |  26 +-
 meta/lib/oeqa/utils/targetbuild.py                 |   5 +-
 scripts/runqemu                                    |  25 +-
 35 files changed, 405 insertions(+), 608 deletions(-)
 create mode 100644 meta-selftest/recipes-test/delay/delay.bb
 delete mode 100644 meta/lib/oeqa/core/tests/cases/loader/threaded/threaded.py
 delete mode 100644 meta/lib/oeqa/core/tests/cases/loader/threaded/threaded_alone.py
 delete mode 100644 meta/lib/oeqa/core/tests/cases/loader/threaded/threaded_depends.py
 delete mode 100644 meta/lib/oeqa/core/tests/cases/loader/threaded/threaded_module.py
 delete mode 100644 meta/lib/oeqa/core/threaded.py

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list