Merge lp:~paul-lucas/zorba/bug-980463 into lp:zorba

Proposed by Paul J. Lucas
Status: Superseded
Proposed branch: lp:~paul-lucas/zorba/bug-980463
Merge into: lp:zorba
Diff against target: 16 lines (+3/-3)
1 file modified
src/zorbaserialization/class_serializer.h (+3/-3)
To merge this branch: bzr merge lp:~paul-lucas/zorba/bug-980463
Reviewer Review Type Date Requested Status
Markos Zaharioudakis Approve
Matthias Brantner Approve
Paul J. Lucas Approve
Daniel Turcanu Pending
Review via email: mp+101854@code.launchpad.net

This proposal has been superseded by a proposal from 2012-04-14.

Commit message

Now comparing name() to name().

Description of the change

Now comparing name() to name().

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-980463-2012-04-13T03-19-01.268Z 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
Paul J. Lucas (paul-lucas) :
review: Approve
Revision history for this message
Matthias Brantner (matthias-brantner) :
review: Approve
Revision history for this message
Markos Zaharioudakis (markos-za) :
review: Approve
Revision history for this message
Markos Zaharioudakis (markos-za) wrote :

Daniel is not working for zorba anymore, so we shouldn't wait for him to approve this, right? If so, he should be removed as a reviewer. I don't know how to do this. Maybe by resubmitting the proposal?

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:~paul-lucas/zorba/bug-980463 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-980463-2012-04-13T12-20-54.451Z is finished. The
  final status was:

  No tests were run - build or configure step must have failed.

  Not commiting changes.

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 :

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

Error copying directory from "/home/ceej/zo/testing/zorbatest/tester/trunk_merge_tree" to "/home/ceej/zo/testing/zorbatest/tester/remotequeue/bug-980463-2012-04-13T16-09-55.544Z/bzr/zorba".
CMake Error at /home/ceej/zo/testing/zorbatest/tester/TarmacLander.cmake:274 (message):
  Validation queue job bug-980463-2012-04-13T16-09-55.544Z is finished. The
  final status was:

  Undetermined, probably an error - please email <email address hidden> with the
  number of this job!

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

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

Attempt to merge into lp:zorba failed due to conflicts:

text conflict in src/zorbaserialization/class_serializer.h

lp:~paul-lucas/zorba/bug-980463 updated
10758. By Paul J. Lucas

Merge from trunk.

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/zorbaserialization/class_serializer.h'
2--- src/zorbaserialization/class_serializer.h 2012-04-10 20:59:34 +0000
3+++ src/zorbaserialization/class_serializer.h 2012-04-13 03:21:20 +0000
4@@ -380,9 +380,9 @@
5 ********************************************************************************/
6 #ifndef NDEBUG
7 #define CHECK_CLASS_NAME(class_name)\
8-if (ar.is_serializing_out() && !ar.is_serialize_base_class()) \
9-{ \
10- assert(strstr(typeid(*this).name(), #class_name)); \
11+if (ar.is_serializing_out() && !ar.is_serialize_base_class()) \
12+{ \
13+ assert(::strcmp(typeid(*this).name(), typeid(class_name).name()) == 0); \
14 }
15 #else
16 #define CHECK_CLASS_NAME(class_name)

Subscribers

People subscribed via source and target branches