Merge lp:~zorba-coders/zorba/bug-1031287 into lp:zorba

Proposed by Ghislain Fourny
Status: Merged
Approved by: Chris Hillery
Approved revision: 10960
Merged at revision: 10962
Proposed branch: lp:~zorba-coders/zorba/bug-1031287
Merge into: lp:zorba
Diff against target: 32 lines (+3/-3)
2 files modified
src/compiler/translator/translator.cpp (+1/-1)
src/store/naive/json_loader.cpp (+2/-2)
To merge this branch: bzr merge lp:~zorba-coders/zorba/bug-1031287
Reviewer Review Type Date Requested Status
Chris Hillery Approve
Matthias Brantner Approve
Review via email: mp+117402@code.launchpad.net

Commit message

Fixing Windows build with JSONiq.

Description of the change

Fixing Windows build with JSONiq.

To post a comment you must log in.
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue job bug-1031287-2012-07-31T10-13-57.498Z is finished. The final status was:

All tests succeeded!

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Voting does not meet specified criteria. Required: Approve > 1, Disapprove < 1, Needs Fixing < 1, Pending < 1. Got: 1 Pending.

Revision history for this message
Ghislain Fourny (gislenius) wrote :

Windows seems to now correctly build, and test results show no apparent regression.

Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
Revision history for this message
Chris Hillery (ceejatec) :
review: Approve
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

The attempt to merge lp:~zorba-coders/zorba/bug-1031287 into lp:zorba failed. Below is the output from the failed tests.

CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 (message):
  Validation queue job bug-1031287-2012-07-31T20-47-56.066Z is finished. The
  final status was:

  1 tests did not succeed - changes not commited.

Error in read script: /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake

Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :
Revision history for this message
Zorba Build Bot (zorba-buildbot) wrote :

Validation queue job bug-1031287-2012-07-31T21-40-58.029Z is finished. The final status was:

All tests succeeded!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/compiler/translator/translator.cpp'
--- src/compiler/translator/translator.cpp 2012-07-24 08:48:48 +0000
+++ src/compiler/translator/translator.cpp 2012-07-31 10:08:22 +0000
@@ -10683,7 +10683,7 @@
1068310683
10684 pop_scope();10684 pop_scope();
1068510685
10686 push_nodestack(flworExpr);10686 push_nodestack(flworExpr.getp());
1068710687
10688 return;10688 return;
10689 }10689 }
1069010690
=== modified file 'src/store/naive/json_loader.cpp'
--- src/store/naive/json_loader.cpp 2012-07-11 15:38:39 +0000
+++ src/store/naive/json_loader.cpp 2012-07-31 10:08:22 +0000
@@ -143,13 +143,13 @@
143 case token::end_array:143 case token::end_array:
144 case token::end_object:144 case token::end_object:
145 {145 {
146 JSONItem_t lItem = lStack.back();146 store::Item_t lItem = lStack.back();
147147
148 lStack.pop_back();148 lStack.pop_back();
149149
150 if (lStack.empty())150 if (lStack.empty())
151 {151 {
152 lRootItem = lItem;152 lRootItem = lItem.cast<JSONItem>();
153 }153 }
154 else154 else
155 {155 {

Subscribers

People subscribed via source and target branches