Merge lp://qastaging/~unity-team/unity8/new_fix_upsidedown into lp://qastaging/unity8

Proposed by Michał Sawicz
Status: Merged
Approved by: Michał Sawicz
Approved revision: 1952
Merged at revision: 2030
Proposed branch: lp://qastaging/~unity-team/unity8/new_fix_upsidedown
Merge into: lp://qastaging/unity8
Prerequisite: lp://qastaging/~mzanetti/unity8/panel-button-fixes
Diff against target: 677 lines (+230/-142)
13 files modified
qml/Components/Orientations.qml (+57/-0)
qml/DeviceConfiguration.qml (+93/-71)
qml/OrientedShell.qml (+35/-25)
qml/Shell.qml (+7/-13)
qml/Stages/DesktopStage.qml (+2/-2)
qml/Stages/PhoneStage.qml (+4/-6)
qml/Stages/SpreadDelegate.qml (+8/-9)
qml/Stages/TabletStage.qml (+13/-7)
tests/qmltests/Stages/tst_PhoneStage.qml (+0/-2)
tests/qmltests/Stages/tst_SpreadDelegate.qml (+6/-2)
tests/qmltests/Stages/tst_TabletStage.qml (+2/-2)
tests/qmltests/tst_OrientedShell.qml (+1/-1)
tests/qmltests/tst_Shell.qml (+2/-2)
To merge this branch: bzr merge lp://qastaging/~unity-team/unity8/new_fix_upsidedown
Reviewer Review Type Date Requested Status
Michał Sawicz Approve
PS Jenkins bot (community) continuous-integration Needs Fixing
Daniel d'Andrada Pending
Review via email: mp+275683@code.qastaging.launchpad.net

This proposal supersedes a proposal from 2015-10-26.

Commit message

Enable support for overriding application orientations based on device type

Description of the change

* Are there any related MPs required for this MP to build/function as expected? Please list.
No

 * Did you perform an exploratory manual test run of your code change and any related functionality?
Yes

 * If you changed the packaging (debian), did you subscribe the ubuntu-unity team to this MP?
N/A

Branch is intended to supersede lp:~josharenson/unity8/fix_upside_down_apps
by encapsulating the orientation overrides inside a neat QtObject, intended to reduce lines of code and improve clarity.

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1936
http://jenkins.qa.ubuntu.com/job/unity8-ci/6353/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4367
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/728
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1065
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/383
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/960
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/961
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/592
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/593
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3558
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4364
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4364/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23683
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/439
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/728
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/728/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23684

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6353/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

In tests/qmltests/tst_Shell.qml:

Don't we have to pass an Orientations object to Shell?

I think that's why we're getting the warning and test failures below:

"""
file:///home/dandrader/unity8/new_fix_upsidedown/qml/Stages/SpreadDelegate.qml:159: TypeError: Cannot read property 'primary' of null
"""

"""
FAIL! : qmltestrunner::Shell::test_launchedAppHasActiveFocus(tablet) 'verify()' returned FALSE. ()
   Loc: [/home/dandrader/unity8/new_fix_upsidedown/tests/qmltests/tst_Shell.qml(843)]
"""

"""
FAIL! : qmltestrunner::Shell::test_launchedAppKeepsActiveFocusOnUsageModeChange() 'verify()' returned FALSE. ()
   Loc: [/home/dandrader/unity8/new_fix_upsidedown/tests/qmltests/tst_Shell.qml(835)]
"""

"""
FAIL! : qmltestrunner::Shell::test_unfocusedAppsAreResumedWhenEnteringWindowedMode() Uncaught exception: Cannot read property 'objectName' of null
   Loc: [/home/dandrader/unity8/new_fix_upsidedown_build/tests/utils/modules/Unity/Test/UnityTestCase.qml(179)]
FAIL! : qmltestrunner::Shell::test_unfocusedAppsGetSuspendedAfterEnteringStagedMode() property requestedState
   Actual (): 1
   Expected (): 2
   Loc: [/home/dandrader/unity8/new_fix_upsidedown/tests/qmltests/tst_Shell.qml(1362)]
"""

review: Needs Fixing
Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

In qml/OrientedShell.qml:

"""
orientations: root.orientations ? root.orientations : ""
"""

This looks strange. Passing an empty string in case there's no root.orientations?

In which situation do you expect root.orientations to be null/undefined?

Revision history for this message
Josh Arenson (josharenson) wrote : Posted in a previous version of this proposal

> In qml/OrientedShell.qml:
>
> """
> orientations: root.orientations ? root.orientations : ""
> """
>
> This looks strange. Passing an empty string in case there's no
> root.orientations?
>
> In which situation do you expect root.orientations to be null/undefined?

This was residual debug code that I will remove.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1938
http://jenkins.qa.ubuntu.com/job/unity8-ci/6365/
Executed test runs:
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4386/console
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/742
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1077
    FAILURE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/395/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/972
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/973
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/604
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/605
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3569/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4383
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4383/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23717
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/445
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/742
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/742/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23716

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6365/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1939
http://jenkins.qa.ubuntu.com/job/unity8-ci/6367/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4390
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/744
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1079
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/397
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/974
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/975
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/606
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/607
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3573
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4387
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4387/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23726
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/447
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/744
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/744/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23725

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6367/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

Some OrientedShell tests are failing and others don't even compile (PhoneStage and TabletStage)!

Please do check the results from the latest jenkins test run

review: Needs Fixing
Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

In tests/qmltests/tst_Shell.qml:

"""
orientations: Orientations{ id: orientations }
"""

This id is not being referenced anywhere. Please remove it.

review: Needs Fixing
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1940
http://jenkins.qa.ubuntu.com/job/unity8-ci/6399/
Executed test runs:
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4460
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/778
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1111
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/429
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1006
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1007
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/638
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/639
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3627
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4457
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4457/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23862
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/467
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/778
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/778/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23863

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6399/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1940
http://jenkins.qa.ubuntu.com/job/unity8-ci/6402/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4465
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/781/console
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1114
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/433
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1009
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1010
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/641
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/642
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3631
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4462
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4462/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23868
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/469/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/781
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/781/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/23870

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6402/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Albert Astals Cid (aacid) wrote : Posted in a previous version of this proposal

Has wrong branches

Revision history for this message
Josh Arenson (josharenson) wrote : Posted in a previous version of this proposal

Stripped tags, merged trunk

Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

FAIL! : qmltestrunner::OrientedShell::test_portraitOnlyAppInSideStage(flo) Compared values are not the same
   Actual (): 8
   Expected (): undefined
   Loc: [/home/dandrader/unity8/new_fix_upsidedown/tests/qmltests/tst_OrientedShell.qml(801)]

review: Needs Fixing
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1941
http://jenkins.qa.ubuntu.com/job/unity8-ci/6462/
Executed test runs:
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4626
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/844
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1174
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/493
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1069
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1070
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/701
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/702
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3737
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4623
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4623/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24169
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/502
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/844
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/844/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24171

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6462/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Josh Arenson (josharenson) wrote : Posted in a previous version of this proposal

The solution was already in some code that I must have accidentally removed. qmltestrunner::OrientedShell should pass now. Tags also stripped.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal
review: Needs Fixing (continuous-integration)
Revision history for this message
Daniel d'Andrada (dandrader) wrote : Posted in a previous version of this proposal

whitespace check fails:
qml/Stages/TabletStage.qml: bad whitespace in line 695

You're mixing tabs and spaces there.

Otherwise it looks good and tests pass now (at least the ones I tried)

review: Needs Fixing
Revision history for this message
Daniel d'Andrada (dandrader) : Posted in a previous version of this proposal
review: Approve
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal

FAILED: Continuous integration, rev:1944
http://jenkins.qa.ubuntu.com/job/unity8-ci/6486/
Executed test runs:
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4691
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-wily-touch/868
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1198
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-wily/514
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1093
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1094
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-amd64-ci/725
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-wily-i386-ci/726
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3784
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4688
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4688/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24304
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-mako/512
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/868
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-wily-armhf/868/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24306

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6486/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote : Posted in a previous version of this proposal
review: Needs Fixing (continuous-integration)
1946. By Michał Sawicz

Merge lp:~mzanetti/unity8/panel-button-fixes

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1947. By Michał Sawicz

Bump QtQuick import

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1948. By Michał Sawicz

lp:~mzanetti/unity8/panel-button-fixes

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
Revision history for this message
Michał Sawicz (saviq) wrote :

This seems to enable rotation when connected to an external screen.

review: Needs Fixing
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1949. By Daniel d'Andrada

DeviceConfiguration.qml: Fix bogus merge with trunk

Revision history for this message
Daniel d'Andrada (dandrader) wrote :

> This seems to enable rotation when connected to an external screen.

Fixed. Was due to a bogus merge with trunk.

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Needs Fixing (continuous-integration)
1950. By Daniel d'Andrada

Another bug from a bad merge with trunk

1951. By Daniel d'Andrada

Fix

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:1950
http://jenkins.qa.ubuntu.com/job/unity8-ci/6587/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4908
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-xenial-touch/2
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1299
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-qmluitest-xenial-amd64/2
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1194
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1195
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-amd64-ci/1
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-i386-ci/1
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3950
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4905
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4905/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24691
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-xenial-mako/1
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/2
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/2/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24692

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6587/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:1951
http://jenkins.qa.ubuntu.com/job/unity8-ci/6596/
Executed test runs:
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4924
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-xenial-touch/11/console
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1308
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/unity8-qmluitest-xenial-amd64/11
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1203
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1204
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-amd64-ci/10
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-i386-ci/10
    UNSTABLE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3955
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4921
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4921/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24706
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-xenial-mako/5/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/11
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/11/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24708

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6596/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Michał Sawicz (saviq) wrote :

qmltestrunner.OrientedShell::test_moveToExternalMonitor
property transformRotationAngle Actual (): 90 Expected (): 0

review: Needs Fixing
1952. By Daniel d'Andrada

Fix bug in OrientedShell.orientationChangesEnabled

Revision history for this message
Daniel d'Andrada (dandrader) wrote :

> qmltestrunner.OrientedShell::test_moveToExternalMonitor
> property transformRotationAngle Actual (): 90 Expected (): 0

Fixed. It was actually a bug in trunk!

Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:1952
http://jenkins.qa.ubuntu.com/job/unity8-ci/6608/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-vivid-touch/4946
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-xenial-touch/23/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-vivid/1320
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-qmluitest-xenial-amd64/23
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-amd64-ci/1215
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-vivid-i386-ci/1216
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-amd64-ci/22
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-xenial-i386-ci/22
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-vivid-mako/3971
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4943
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-vivid-armhf/4943/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24749
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-xenial-mako/12/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/23
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-xenial-armhf/23/artifact/work/output/*zip*/output.zip
    SUCCESS: http://s-jenkins.ubuntu-ci:8080/job/touch-flash-device/24750

Click here to trigger a rebuild:
http://s-jenkins.ubuntu-ci:8080/job/unity8-ci/6608/rebuild

review: Needs Fixing (continuous-integration)
Revision history for this message
Michał Sawicz (saviq) wrote :

All fixed, thanks.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
The diff is not available at this time. You can reload the page or download it.

Subscribers

People subscribed via source and target branches