Merge lp:~unity-team/unity8/installed-qmltests into lp:unity8
| Status: | Merged |
|---|---|
| Approved by: | Michał Sawicz on 2017-01-11 |
| Approved revision: | 2380 |
| Merged at revision: | 2750 |
| Proposed branch: | lp:~unity-team/unity8/installed-qmltests |
| Merge into: | lp:unity8 |
| Diff against target: |
2165 lines (+592/-189) 72 files modified
CMakeLists.txt (+0/-2) cmake/modules/QmlTest.cmake (+182/-11) debian/control (+19/-8) debian/rules (+2/-2) debian/shlibs.local (+1/-0) debian/tests/control (+2/-3) debian/tests/qmluitests.sh (+6/-16) debian/unity8-tests.install (+4/-0) debian/unity8-tests.lintian-overrides (+1/-0) include/paths.h.in (+26/-1) plugins/Ubuntu/Gestures/CMakeLists.txt (+1/-1) plugins/Wizard/PageList.cpp (+3/-1) tests/CMakeLists.txt (+17/-9) tests/mocks/AccountsService/CMakeLists.txt (+0/-1) tests/mocks/CMakeLists.txt (+13/-14) tests/mocks/Cursor/CMakeLists.txt (+1/-1) tests/mocks/LightDM/IntegratedLightDM/CMakeLists.txt (+0/-1) tests/mocks/LightDM/IntegratedLightDM/liblightdm/CMakeLists.txt (+2/-1) tests/mocks/Ubuntu/SystemSettings/SecurityPrivacy/CMakeLists.txt (+1/-1) tests/mocks/Unity/Application/ApplicationInfo.cpp (+1/-2) tests/mocks/Unity/Application/CMakeLists.txt (+1/-1) tests/mocks/Unity/CMakeLists.txt (+3/-0) tests/mocks/Unity/Indicators/CMakeLists.txt (+4/-0) tests/mocks/Unity/Launcher/MockLauncherItem.cpp (+1/-1) tests/mocks/Unity/fake_scope.cpp (+2/-2) tests/plugins/AccountsService/CMakeLists.txt (+6/-0) tests/plugins/Dash/CMakeLists.txt (+26/-1) tests/plugins/Dash/cardcreatortest.cpp (+7/-2) tests/plugins/Dash/horizontaljournaltest.cpp (+3/-1) tests/plugins/Dash/horizontaljournaltry.cpp (+3/-1) tests/plugins/Dash/listviewwithpageheadersectionexternalmodeltest.cpp (+3/-1) tests/plugins/Dash/listviewwithpageheadersectiontest.cpp (+3/-1) tests/plugins/Dash/listviewwithpageheadertest.cpp (+3/-1) tests/plugins/Dash/organicgridtest.cpp (+3/-1) tests/plugins/Dash/organicgridtry.cpp (+3/-1) tests/plugins/Dash/verticaljournaltest.cpp (+3/-1) tests/plugins/Dash/verticaljournaltry.cpp (+3/-1) tests/plugins/GlobalShortcut/CMakeLists.txt (+11/-5) tests/plugins/GlobalShortcut/GlobalShortcutTest.cpp (+3/-2) tests/plugins/Greeter/Unity/Launcher/CMakeLists.txt (+5/-20) tests/plugins/Greeter/Unity/Launcher/launchermodelastest.cpp (+4/-0) tests/plugins/ImageCache/CMakeLists.txt (+10/-0) tests/plugins/ImageCache/test.cpp (+4/-2) tests/plugins/LightDM/IntegratedLightDM/CMakeLists.txt (+21/-5) tests/plugins/LightDM/IntegratedLightDM/dbus.cpp (+2/-1) tests/plugins/SessionBroadcast/CMakeLists.txt (+6/-0) tests/plugins/Ubuntu/Gestures/CMakeLists.txt (+8/-4) tests/plugins/Ubuntu/Gestures/GestureTest.cpp (+2/-1) tests/plugins/Ubuntu/Gestures/tst_FloatingFlickable.qml (+1/-1) tests/plugins/Ubuntu/Gestures/tst_TouchGate.cpp (+3/-1) tests/plugins/Unity/Indicators/CMakeLists.txt (+12/-2) tests/plugins/Unity/Indicators/IndicatorsManagerTest.cpp (+1/-1) tests/plugins/Unity/Indicators/IndicatorsModelTest.cpp (+1/-1) tests/plugins/Unity/Launcher/CMakeLists.txt (+9/-3) tests/plugins/Unity/Launcher/launchermodeltest.cpp (+17/-0) tests/plugins/Unity/Session/CMakeLists.txt (+6/-0) tests/plugins/Utils/CMakeLists.txt (+8/-1) tests/plugins/Utils/DeviceConfigParserTest.cpp (+4/-1) tests/plugins/Wizard/CMakeLists.txt (+6/-0) tests/qmltests/CMakeLists.txt (+17/-0) tests/qmltests/Components/CMakeLists.txt (+18/-3) tests/qmltests/Components/tst_DragHandle.cpp (+4/-2) tests/qmltests/Components/tst_EdgeDragEvaluator.cpp (+4/-2) tests/qmltests/Components/tst_ZoomableImage.qml (+1/-1) tests/qmltests/Dash/Previews/tst_PreviewImageGallery.qml (+13/-13) tests/qmltests/Dash/Previews/tst_PreviewZoomableImage.qml (+5/-5) tests/qmltests/Dash/tst_GenericScopeView.qml (+1/-1) tests/qmltests/Notifications/tst_Notifications.qml (+11/-11) tests/qmltests/Notifications/tst_SwipeToAct.qml (+5/-5) tests/qmltests/tst_Shell.qml (+2/-2) tests/uqmlscene/CMakeLists.txt (+4/-0) tests/utils/modules/Unity/Test/CMakeLists.txt (+4/-2) |
| To merge this branch: | bzr merge lp:~unity-team/unity8/installed-qmltests |
| Related bugs: |
| Reviewer | Review Type | Date Requested | Status |
|---|---|---|---|
| Timo Jyrinki | Approve on 2017-01-13 | ||
| Unity8 CI Bot | continuous-integration | 2016-04-29 | Approve on 2017-01-03 |
| Michał Sawicz | 2016-05-03 | Abstain on 2017-01-03 | |
| Albert Astals Cid (community) | 2016-04-29 | Approve on 2016-12-23 | |
| Michael Terry | Pending | ||
|
Review via email:
|
|||
Commit Message
Run the qmluitests.sh autopkg test against the installed package.
This is faster and more accurate than rebuilding unity8 and running tests from the build dir.
Description of the Change
- Installs a bunch more tests and files.
- I needed a place to put them, so I put them in unity8-fake-env and renamed it to unity8-tests (I could have added a whole new package that depended on unity8-fake-env, but I felt like that was unneeded -- but am happy to go that way if you reviewers like that more).
- Makes installed tests look for related data files in dynamic locations rather than hardcoded locations.
- Has cmake create scripts on the fly that replicate the environment and commands each test needs, which then get installed. This code is a bit gross. Would be happy to hear from cmake-heads on ways to improve it.
I think long term we want to convert both build-tree and installed tests to use a test runner rather than cmake or shell logic. But since I already wrote this minimally invasive approach, I vote we use this for now and improve it in the future.
| Albert Astals Cid (aacid) wrote : | # |
Do we need to pull gdb and xvfb in the main unity8 package?
That means extra installed stuff in the phone, can't we move it to fake-env too?
| Michael Terry (mterry) wrote : | # |
gdb and xvfb are merely Build-Depends, not actual dependencies of the main unity8 package. They need to be Build-Depends so that cmake knows what path they live at when writing scripts.
So no new bits on the phone image.
| Albert Astals Cid (aacid) wrote : | # |
> gdb and xvfb are merely Build-Depends, not actual dependencies of the main
> unity8 package. They need to be Build-Depends so that cmake knows what path
> they live at when writing scripts.
>
> So no new bits on the phone image.
Ah, good stuff then :) Will continue the review
| Albert Astals Cid (aacid) wrote : | # |
I agree there's a bit too much of cmake string replacements going on but sometimes you have to do this kind of stuff to support both executing the tests installed and non installed.
To me it looks acceptable but I'd prefer someone else also giving the +1 before top approving.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2352
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2353
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Albert Astals Cid (aacid) wrote : | # |
Text conflict in debian/control
1 conflicts encountered.
| Michael Terry (mterry) wrote : | # |
Merged and resolved.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2354
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2355
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2355
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Michał Sawicz (saviq) wrote : | # |
Looks like we're missing test results:
https:/
| Michał Sawicz (saviq) wrote : | # |
From a quick glance, it seems you're exiting after the first failed test instead of running them all, and also they're not run in parallel.
I wonder if generating a data file for the tests (JSON or something) and then a python3 "runner" for that would work a lil' better?
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2356
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2361
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2362
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2363
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2364
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2365
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Michael Terry (mterry) wrote : | # |
Sorry for all the CI noise. I addressed Saviq's comments (I should have had proper parallel support before, whoops).
But now I'm fighting with failures I only see in jenkins and am using this MP as a guinea pig.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2366
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Michael Terry (mterry) wrote : | # |
OK, I think this is ready to be reviewed again.
- Now tests are parallel with 'parallel'
- Output is thus only given in chunks when tests finish (no more interleaving of output)
- It also means that we don't stop on the first failure
- We guard against not noticing a total test failure by touching the XML output file before starting
- Comparing recent test times, we took 47 minutes compared to 68 minutes. Saved a bit of time by skipping the build.
| Albert Astals Cid (aacid) wrote : | # |
Text conflict in tests/plugins/
Text conflict in tests/plugins/
Text conflict in tests/plugins/
3 conflicts encountered.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2367
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2368
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2369
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
UNSTABLE: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Albert Astals Cid (aacid) wrote : | # |
testSessionBack
| Michael Terry (mterry) wrote : | # |
OK, fixed testSessionBackend. There was a test executable we weren't installing.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2371
https:/
Executed test runs:
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
UNSTABLE: https:/
SUCCESS: https:/
SUCCESS: https:/
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:/
| Albert Astals Cid (aacid) wrote : | # |
Text conflict in tests/mocks/
1 conflicts encountered.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2372
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2372
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2372
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
Click here to trigger a rebuild:
https:/
| Albert Astals Cid (aacid) wrote : | # |
Text conflict in debian/control
1 conflicts encountered
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2373
https:/
Executed test runs:
FAILURE: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
SUCCESS: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
FAILURE: https:/
Click here to trigger a rebuild:
https:/
| Albert Astals Cid (aacid) wrote : | # |
This fails to merge again, wonder if we should put it back to WiP for the moment?
| Michael Terry (mterry) wrote : | # |
I've set this to review-needed again. I've merged with trunk and this ought to work now.
I'd like to see this landed so I don't have to merge from trunk again. :)
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2375
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Albert Astals Cid (aacid) wrote : | # |
Commit message says qmltests.sh, but we have no file with such name?
| Michael Terry (mterry) wrote : | # |
@Albert, I fixed the message to say qmluitests.sh instead. (it's in the debian/tests/ directory)
| Albert Astals Cid (aacid) wrote : | # |
Looks good to me, runs the same amount of tests and we don't have to recompile anything. I'd say let's get in before Michael gives up and if there's any issue we can always refine it later.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
FAILED: Continuous integration, rev:2375
https:/
Executed test runs:
FAILURE: https:/
FAILURE: https:/
Click here to trigger a rebuild:
https:/
| Albert Astals Cid (aacid) wrote : | # |
Text conflict in debian/control
1 conflicts encountered.
Note: Was top approved already.
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2379
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2379
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Unity8 CI Bot (unity8-ci-bot) wrote : | # |
PASSED: Continuous integration, rev:2380
https:/
Executed test runs:
SUCCESS: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild:
https:/
| Timo Jyrinki (timo-jyrinki) wrote : | # |
The new dependencies are in universe and do not have MIR. This landed in archives and is now blocking Qt 5.7.1 transistion.
| Timo Jyrinki (timo-jyrinki) wrote : | # |
To be exact, xvfb and qt5-default come from source packages that are in main and could be promoted, while dbus-test-runner and parallel are fully universe packages.
| Timo Jyrinki (timo-jyrinki) wrote : | # |
Oh, ok, found bug #1656104 now, that should fix it. Thanks!

FAILED: Continuous integration, rev:2351 /unity8- jenkins. ubuntu. com/job/ lp-unity8- ci/1096/ /unity8- jenkins. ubuntu. com/job/ test-0- autopkgtest/ label=amd64, release= vivid+overlay, testname= qmluitests. sh/650 /unity8- jenkins. ubuntu. com/job/ test-0- autopkgtest/ label=amd64, release= xenial+ overlay, testname= qmluitests. sh/650/ console /unity8- jenkins. ubuntu. com/job/ test-0- autopkgtest/ label=phone- armhf,release= vivid+overlay, testname= autopilot. sh/650/ console /unity8- jenkins. ubuntu. com/job/ build-0- fetch/1473 /unity8- jenkins. ubuntu. com/job/ build-1- sourcepkg/ release= vivid+overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-1- sourcepkg/ release= xenial+ overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=amd64, release= vivid+overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=amd64, release= vivid+overlay/ 1439/artifact/ output/ *zip*/output. zip /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=amd64, release= xenial+ overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=amd64, release= xenial+ overlay/ 1439/artifact/ output/ *zip*/output. zip /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=armhf, release= vivid+overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=armhf, release= vivid+overlay/ 1439/artifact/ output/ *zip*/output. zip /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=armhf, release= xenial+ overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=armhf, release= xenial+ overlay/ 1439/artifact/ output/ *zip*/output. zip /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=i386, release= vivid+overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=i386, release= vivid+overlay/ 1439/artifact/ output/ *zip*/output. zip /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=i386, release= xenial+ overlay/ 1439 /unity8- jenkins. ubuntu. com/job/ build-2- binpkg/ arch=i386, release= xenial+ overlay/ 1439/artifact/ output/ *zip*/output. zip
https:/
Executed test runs:
SUCCESS: https:/
FAILURE: https:/
FAILURE: https:/
SUCCESS: https:/
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:/
Click here to trigger a rebuild: /unity8- jenkins. ubuntu. com/job/ lp-unity8- ci/1096/ rebuild
https:/