Merge lp://qastaging/~charlesk/keeper/wtf into lp://qastaging/keeper/devel
- wtf
- Merge into devel
Status: | Needs review |
---|---|
Proposed branch: | lp://qastaging/~charlesk/keeper/wtf |
Merge into: | lp://qastaging/keeper/devel |
Diff against target: |
513 lines (+260/-117) 2 files modified
src/tar/tar-creator.cpp (+123/-64) tests/unit/tar/tar-creator-test.cpp (+137/-53) |
To merge this branch: | bzr merge lp://qastaging/~charlesk/keeper/wtf |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
unity-api-1-bot | continuous-integration | Approve | |
Unity API Team | Pending | ||
Review via email: mp+305854@code.qastaging.launchpad.net |
Commit message
Another testing branch for the CI bot, do not review/approve/land
Description of the change
Another testing branch for the CI bot, do not review/approve/land
unity-api-1-bot (unity-api-1-bot) wrote : | # |
- 111. By Charles Kerr
-
split tar-creator-test out from one big test to several more focused tests
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:111
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 112. By Charles Kerr
-
refactor tar-creator-test a bit more to remove redundant code
- 113. By Charles Kerr
-
in tar-creator, fix dtor issue by moving field step_buf_ ahead of step_archive_ in instantiation order
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:113
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 114. By Charles Kerr
-
in TarCreator:
:Impl:: Impl(), remove redundant variable initialization - 115. By Charles Kerr
-
in tar-creator, reintroduce wrapped_
archive_ write_new( ), which is a convenience function that wraps archive_write_new() in a shared_ptr
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:115
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 116. By Charles Kerr
-
in TarCreator:
:Impl:: step(), clear the step_archive_ smart_ptr after the last step is done
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:116
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 117. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_header( ), a helper that calls archive_ write_header( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:117
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 118. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_data( ), a helper that calls archive_ write_data( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:118
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 119. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_close( ), a helper that calls archive_ write_close( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:119
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 120. By Charles Kerr
-
in TarCreator:
:Impl:: step(), fix looping bug that caused too much data to be read in a single pass
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:120
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 121. By Charles Kerr
-
experimental commit: re-introduce TarCreatorFixtu
re::CreateCompr essed
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:121
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
- 122. By Charles Kerr
-
sync with trunk
- 123. By Charles Kerr
-
in tar-creator-test, add variations of making a tar from an empty file set
unity-api-1-bot (unity-api-1-bot) wrote : | # |
PASSED: Continuous integration, rev:123
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild:
https:/
Unmerged revisions
- 123. By Charles Kerr
-
in tar-creator-test, add variations of making a tar from an empty file set
- 122. By Charles Kerr
-
sync with trunk
- 121. By Charles Kerr
-
experimental commit: re-introduce TarCreatorFixtu
re::CreateCompr essed - 120. By Charles Kerr
-
in TarCreator:
:Impl:: step(), fix looping bug that caused too much data to be read in a single pass - 119. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_close( ), a helper that calls archive_ write_close( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN - 118. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_data( ), a helper that calls archive_ write_data( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN - 117. By Charles Kerr
-
in TarCreator::Impl add wrapped_
archive_ write_header( ), a helper that calls archive_ write_header( ) and handles return values like ARCHIVE_RETRY and ARCHIVE_WARN - 116. By Charles Kerr
-
in TarCreator:
:Impl:: step(), clear the step_archive_ smart_ptr after the last step is done - 115. By Charles Kerr
-
in tar-creator, reintroduce wrapped_
archive_ write_new( ), which is a convenience function that wraps archive_write_new() in a shared_ptr - 114. By Charles Kerr
-
in TarCreator:
:Impl:: Impl(), remove redundant variable initialization
FAILED: Continuous integration, rev:110 /jenkins. canonical. com/unity- api-1/job/ lp-keeper- ci/77/ /jenkins. canonical. com/unity- api-1/job/ build/663/ console /jenkins. canonical. com/unity- api-1/job/ build-0- fetch/669 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= vivid+overlay/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= vivid+overlay/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= xenial+ overlay/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= xenial+ overlay/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= yakkety/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=amd64, release= yakkety/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= vivid+overlay/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= vivid+overlay/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= xenial+ overlay/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= xenial+ overlay/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= yakkety/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=armhf, release= yakkety/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=i386, release= vivid+overlay/ 484/console /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=i386, release= xenial+ overlay/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=i386, release= xenial+ overlay/ 484/artifact/ output/ *zip*/output. zip /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=i386, release= yakkety/ 484 /jenkins. canonical. com/unity- api-1/job/ build-2- binpkg/ arch=i386, release= yakkety/ 484/artifact/ output/ *zip*/output. zip
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
FAILURE: https:/
SUCCESS: https:/
deb: https:/
SUCCESS: https:/
deb: https:/
Click here to trigger a rebuild: /jenkins. canonical. com/unity- api-1/job/ lp-keeper- ci/77/rebuild
https:/