Unity/Libunity unit tests broken by latest glib
Bug #1159677 reported by
Didier Roche-Tolomelli
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Unity |
Fix Released
|
Undecided
|
Unassigned | ||
libunity |
Fix Released
|
Undecided
|
Unassigned | ||
libunity (Ubuntu) |
Fix Released
|
High
|
Unassigned | ||
Raring |
Fix Released
|
High
|
Unassigned | ||
unity (Ubuntu) |
Fix Released
|
Undecided
|
Unassigned | ||
Raring |
Fix Released
|
Undecided
|
Unassigned |
Bug Description
Latest glib brought https:/
Related branches
lp://staging/~didrocks/unity/fix-tests-with-latest-glib-unity7
- Nick Dedekind (community): Approve
- PS Jenkins bot (community): Approve (continuous-integration)
-
Diff: 77 lines (+6/-6)6 files modifiedtests/data/applications/bzr-handle-patch.desktop (+1/-1)
tests/data/applications/kde4/afile.desktop (+1/-1)
tests/data/applications/no-icon.desktop (+1/-1)
tests/data/applications/ubuntu-software-center.desktop (+1/-1)
tests/data/applications/ubuntuone-installer.desktop (+1/-1)
tests/data/applications/update-manager.desktop (+1/-1)
lp://staging/~didrocks/unity/fix-tests-with-latest-glib
- PS Jenkins bot (community): Approve (continuous-integration)
- Nick Dedekind (community): Approve
-
Diff: 77 lines (+6/-6)6 files modifiedtests/data/applications/bzr-handle-patch.desktop (+1/-1)
tests/data/applications/kde4/afile.desktop (+1/-1)
tests/data/applications/no-icon.desktop (+1/-1)
tests/data/applications/ubuntu-software-center.desktop (+1/-1)
tests/data/applications/ubuntuone-installer.desktop (+1/-1)
tests/data/applications/update-manager.desktop (+1/-1)
lp://staging/~unity-team/libunity/fix-latest-glib-unity7
- PS Jenkins bot (community): Approve (continuous-integration)
- Michal Hruby (community): Approve
-
Diff: 86 lines (+7/-7)6 files modifiedtest/data/applications/asdasdasd.desktop (+1/-1)
test/data/applications/rhythmbox.desktop (+1/-1)
test/data/applications/testapp1.desktop (+1/-1)
test/data/applications/ubuntu-about.desktop (+1/-1)
test/data/test_desktop_file.desktop (+1/-1)
test/vala/test-io.vala (+2/-2)
Superseded
for merging
into
lp://staging/libunity
- Unity Team: Pending requested
-
Diff: 15372 lines (+8999/-3718)92 files modified.bzrignore (+42/-56)
bindings/python/Makefile.am (+9/-1)
bindings/python/Unity.py (+86/-11)
bindings/python/scope-runner-dbus.py (+36/-0)
configure.ac (+3/-3)
data/Makefile.am (+5/-1)
data/client-scopes.json (+38/-5)
data/com.canonical.Unity.Lenses.gschema.xml.in.in (+20/-0)
debian/changelog (+19/-0)
debian/control (+9/-1)
debian/libunity9.symbols (+314/-229)
debian/rules (+2/-0)
debian/unity-scopes-runner.install (+1/-0)
doc/reference/Makefile.am (+1/-0)
extras/Makefile.am (+1/-1)
extras/unity-extra-preview-player-controller.vala (+0/-159)
extras/unity-extra-utils.vala (+4/-4)
po/POTFILES.in (+1/-1)
protocol/Makefile.am (+5/-3)
protocol/protocol-lens-interface.vala (+0/-107)
protocol/protocol-preview-player.vala (+126/-0)
protocol/protocol-previews.vala (+9/-12)
protocol/protocol-scope-discovery.vala (+469/-0)
protocol/protocol-scope-interface.vala (+91/-29)
protocol/unity-scope-proxy-remote.vala (+236/-196)
protocol/unity-scope-proxy.vala (+79/-20)
src/Makefile.am (+22/-17)
src/unity-aggregator-scope-private.vala (+1642/-0)
src/unity-aggregator-scope.vala (+142/-0)
src/unity-appinfo-manager.vala (+7/-5)
src/unity-category.vala (+5/-3)
src/unity-deprecated-scope-impl.vala (+692/-0)
src/unity-deprecated-scope.vala (+182/-0)
src/unity-filters.vala (+82/-17)
src/unity-io.vala (+10/-10)
src/unity-lens-private.vala (+0/-752)
src/unity-lens.vala (+0/-135)
src/unity-master-scope.vala (+143/-0)
src/unity-merge-strategy.vala (+6/-3)
src/unity-preferences-manager.vala (+20/-7)
src/unity-previews.vala (+32/-310)
src/unity-result-activation.vala (+17/-1)
src/unity-scope-channel.vala (+162/-0)
src/unity-scope-dbus-connector.vala (+128/-0)
src/unity-scope-dbus-impl.vala (+579/-492)
src/unity-scope-factory.vala (+0/-123)
src/unity-scope-interface.vala (+410/-0)
src/unity-scope-proxy-local.vala (+0/-139)
src/unity-scope.vala (+0/-237)
src/unity-search.vala (+219/-40)
src/unity-sound-menu-mpris.vala (+1/-1)
src/unity-synchronizer.vala (+89/-142)
src/unity-utils.vala (+252/-0)
test/data/applications/asdasdasd.desktop (+1/-1)
test/data/applications/rhythmbox.desktop (+1/-1)
test/data/applications/testapp1.desktop (+1/-1)
test/data/applications/ubuntu-about.desktop (+1/-1)
test/data/test_desktop_file.desktop (+1/-1)
test/data/unity/scopes/masterscope_a.scope (+15/-0)
test/data/unity/scopes/masterscope_b.scope (+15/-0)
test/data/unity/scopes/masterscope_b/brokenscope.scope (+3/-0)
test/data/unity/scopes/masterscope_b/subscope1.scope (+13/-0)
test/data/unity/scopes/masterscope_b/subscope2.scope (+11/-0)
test/data/unity/scopes/test_masterscope.scope (+13/-0)
test/data/unity/scopes/test_masterscope/childscope_1.scope (+12/-0)
test/data/unity/scopes/test_masterscope/childscope_2.scope (+12/-0)
test/python/bug-1062331.py (+2/-4)
test/python/extras.py (+0/-1)
test/vala/Makefile.am (+14/-23)
test/vala/blacklist-crash-1029949-test-case.vala (+4/-9)
test/vala/common.vala (+48/-2)
test/vala/test-filters.vala (+39/-0)
test/vala/test-io.vala (+161/-13)
test/vala/test-preferences.vala (+16/-2)
test/vala/test-preview-player-iface.vala (+2/-1)
test/vala/test-previews.vala (+16/-54)
test/vala/test-remote-scope.vala (+2/-1)
test/vala/test-results-synchronizer.vala (+102/-0)
test/vala/test-scope-discovery.vala (+281/-0)
test/vala/test-scope-signals.vala (+10/-6)
test/vala/test-scope.vala (+1358/-0)
test/vala/test-utils.vala (+7/-4)
test/vala/test-vala.vala (+7/-0)
tools/Makefile.am (+1/-1)
tools/dbus-scope-connect.ui (+9/-9)
tools/preview-renderer.vala (+5/-6)
tools/unity-tool-dbus-util.vala (+7/-7)
tools/unity-tool-res.gresource.xml (+1/-1)
tools/unity-tool-ui.vala (+222/-181)
tools/unity-tool.ui (+53/-31)
tools/unity-tool.vala (+84/-84)
unity.pc.in (+1/-0)
lp://staging/~didrocks/libunity/fix-latest-glib-trunk
- PS Jenkins bot (community): Approve (continuous-integration)
- Didier Roche-Tolomelli: Approve
-
Diff: 86 lines (+7/-7)6 files modifiedtest/data/applications/asdasdasd.desktop (+1/-1)
test/data/applications/rhythmbox.desktop (+1/-1)
test/data/applications/testapp1.desktop (+1/-1)
test/data/applications/ubuntu-about.desktop (+1/-1)
test/data/test_desktop_file.desktop (+1/-1)
test/vala/test-io.vala (+2/-2)
Superseded
for merging
into
lp://staging/~unity-team/libunity/fix-latest-glib-unity7
- Unity Team: Pending requested
-
Diff: 1 lines (+0/-0)0 files modified
summary: |
- Unity unit tests broken by latest glib + Unity/Libunity unit tests broken by latest glib |
tags: | added: ftbfs |
Changed in libunity (Ubuntu Raring): | |
importance: | Undecided → High |
milestone: | none → ubuntu-13.04-beta-1 |
status: | New → Confirmed |
Changed in unity: | |
status: | Fix Committed → Fix Released |
Changed in libunity: | |
status: | Fix Committed → Fix Released |
milestone: | none → 7.0.0 |
To post a comment you must log in.
Fix committed into lp:~unity-team/unity/libunity-7.0-breakage at revision None, scheduled for release in unity, milestone Unknown