[Openais] status of topic-libqb branch & cts testing

2010-11-16 Thread Angus Salkeld
Hi This is just a status update on what I am doing on the topic-libqb branch. --- CTS --- I currently have 4 tests commented out (all others pass): 1] CpgMsgOrderBasic 2] CpgMsgOrderZcb - The issue here is qb_ipcs_event_send() returns try again as the ringbuffer is full. Steven remember

Re: [Openais] More patches for the "topic-libqb: branch

2010-11-16 Thread Angus Salkeld
On Tue, Nov 16, 2010 at 08:56:05AM -0700, Steven Dake wrote: > On 11/16/2010 03:17 AM, Angus Salkeld wrote: > > These are fixes to problems found by our CTS tests. > > > > There are still some (4) test cases in need of sorting out. > > > > -Angus > > > > _

Re: [Openais] More patches for the "topic-libqb: branch

2010-11-16 Thread Steven Dake
On 11/16/2010 03:17 AM, Angus Salkeld wrote: > These are fixes to problems found by our CTS tests. > > There are still some (4) test cases in need of sorting out. > > -Angus > > ___ > Openais mailing list > Openais@lists.linux-foundation.org > https://

[Openais] [PATCH 13/13] libqb: fix iov_len in pcmk_test

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/agents/cpg_test_agent.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cts/agents/cpg_test_agent.c b/cts/agents/cpg_test_agent.c index 3729fe9..a608844 100644 --- a/cts/agents/cpg_test_agent.c +++ b/cts/agents/cpg_test_agent.c @@ -

[Openais] [PATCH 09/13] libqb: rip out objdb & serialize locks

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- exec/main.c | 38 --- exec/objdb.c | 96 -- 2 files changed, 0 insertions(+), 134 deletions(-) diff --git a/exec/main.c b/exec/main.c index c24b304..7778454 100644 --- a/exec/main.c

[Openais] [PATCH 11/13] libqb: add missing error conversions

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- lib/evs.c| 24 lib/pload.c |4 ++-- lib/quorum.c |5 + lib/votequorum.c | 48 4 files changed, 39 insertions(+), 42 deletions(-) diff --git a/lib/evs.c b/li

[Openais] [PATCH 12/13] libqb: fix valgring warnings in mon/wd

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- services/mon.c |5 - services/wd.c | 17 + 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/services/mon.c b/services/mon.c index d07254d..6c068f6 100644 --- a/services/mon.c +++ b/services/mon.c @@ -272,6 +272,7 @@ static

[Openais] [PATCH 07/13] libqb: remove the lib init/exit from the test service agent

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/agents/syncv2.c | 18 +++--- 1 files changed, 3 insertions(+), 15 deletions(-) diff --git a/cts/agents/syncv2.c b/cts/agents/syncv2.c index a98c539..0b46558 100644 --- a/cts/agents/syncv2.c +++ b/cts/agents/syncv2.c @@ -76,8 +76,6 @@ static void

[Openais] [PATCH 10/13] libqb: fix timer handles (don't alloc on stack)

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/agents/cpg_test_agent.c |4 ++-- exec/ipc_glue.c |4 ++-- exec/main.c |3 ++- exec/totemsrp.c |2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/cts/agents/cpg_test_agent.c b/cts/agents

[Openais] [PATCH 08/13] libqb: only init IPC on service engines that need it.

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- exec/ipc_glue.c | 17 + 1 files changed, 13 insertions(+), 4 deletions(-) diff --git a/exec/ipc_glue.c b/exec/ipc_glue.c index ff9b288..a8f0e92 100644 --- a/exec/ipc_glue.c +++ b/exec/ipc_glue.c @@ -203,7 +203,9 @@ static int32_t cs_ipcs_connect

[Openais] [PATCH 06/13] libqb: use the main loop to shutdown

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/agents/syncv2.c | 13 exec/ipc_glue.c |5 ++- exec/main.c | 77 +--- exec/service.c | 81 +- 4 files changed, 78 insertions(+), 98 d

[Openais] [PATCH 05/13] CTS: reset "victim" variable on each test run.

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/corotests.py |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/cts/corotests.py b/cts/corotests.py index 623b75f..e56a699 100644 --- a/cts/corotests.py +++ b/cts/corotests.py @@ -878,6 +878,7 @@ class VoteQuorumGoDown(VoteQuorumBase):

[Openais] [PATCH 04/13] CTS: increse wait for node to reboot

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/corotests.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cts/corotests.py b/cts/corotests.py index 3b7e53e..623b75f 100644 --- a/cts/corotests.py +++ b/cts/corotests.py @@ -1240,7 +1240,7 @@ confirm watchdog action self.C

[Openais] [PATCH 03/13] CTS: default all-once to "0"

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/corolab.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cts/corolab.py b/cts/corolab.py index 340c751..3541f47 100755 --- a/cts/corolab.py +++ b/cts/corolab.py @@ -133,7 +133,7 @@ class CoroLabEnvironment(CtsLab): self["va

[Openais] [PATCH 02/13] CTS: fix error message

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/corotests.py |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cts/corotests.py b/cts/corotests.py index 0b04a34..3b7e53e 100644 --- a/cts/corotests.py +++ b/cts/corotests.py @@ -907,7 +907,7 @@ class VoteQuorumGoDown(VoteQuorumBase):

[Openais] [PATCH 01/13] CTS: support new pacemaker-cts

2010-11-16 Thread Angus Salkeld
Signed-off-by: Angus Salkeld --- cts/.gitignore |1 + cts/corosync.py |8 cts/corotests.py |4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/cts/.gitignore b/cts/.gitignore index 6f99c8f..e9e3b0c 100644 --- a/cts/.gitignore +++ b/cts/.gitignore @@ -1,

[Openais] More patches for the "topic-libqb: branch

2010-11-16 Thread Angus Salkeld
These are fixes to problems found by our CTS tests. There are still some (4) test cases in need of sorting out. -Angus ___ Openais mailing list Openais@lists.linux-foundation.org https://lists.linux-foundation.org/mailman/listinfo/openais