Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-09-13 Thread Sean McBride
On Fri, 13 Sep 2013 14:51:21 -0400, Brad King said: >> There is still something fishy: >> >> http://open.cdash.org/testDetails.php?test=208331329&build=3027132 > >http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=54a3e2a9 Not that it matters horribly, but those aren't from Guard Malloc (none of

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-09-13 Thread Brad King
On 09/13/2013 02:54 PM, David Cole wrote: > I don't understand the purpose of the "( )" at the end of this line of > the regex: > > -- Processing memory checking output:( ) I added that when converting the regex to use literal newlines instead of \n. We need to match trailing whitespace wit

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-09-13 Thread David Cole
There is still something fishy: http://open.cdash.org/testDetails.php?test=208331329&build=3027132 The regex is still overly complicated... I don't understand the purpose of the "( )" at the end of this line of the regex: -- Processing memory checking output:( ) And the whole tail end

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-09-13 Thread Brad King
On 09/13/2013 02:32 PM, Rolf Eike Beer wrote: > There is still something fishy: > > http://open.cdash.org/testDetails.php?test=208331329&build=3027132 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=54a3e2a9 -Brad -- Powered by www.kitware.com Visit other Kitware open-source projects at ht

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-09-13 Thread Rolf Eike Beer
Brad King wrote: > On 08/16/2013 09:47 AM, Brad King wrote: > > The output that is used for matching against the regex *does* > > have the valgrind "==" lines at the *end* but for some reason > > they are not reported in DynamicAnalysis.xml. This should fix > > > > the test: > > http://cmake.org

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Brad King
On 08/16/2013 09:47 AM, Brad King wrote: > The output that is used for matching against the regex *does* > have the valgrind "==" lines at the *end* but for some reason > they are not reported in DynamicAnalysis.xml. This should fix > the test: > > http://cmake.org/gitweb?p=cmake.git;a=commitdif

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Rolf Eike Beer
Am 16.08.2013 16:02, schrieb Brad King: On 08/16/2013 09:47 AM, Brad King wrote: Now I'll separately investigate why the output used for matching and the output reported are not the same. It is due to a feature added here: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3017259a to move

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Brad King
On 08/16/2013 09:47 AM, Brad King wrote: > Now I'll separately investigate why the output used for matching > and the output reported are not the same. It is due to a feature added here: http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3017259a to move all the valgrind output lines to the top

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Brad King
On 08/16/2013 09:29 AM, Rolf Eike Beer wrote: > Am 16.08.2013 14:53, schrieb Brad King: >> Back to the head scratching on this one :( > > Maybe it's just an additional newline from valgrind, not the tab? I finally managed to reproduce it at the command line on dash23 by running it through a hacke

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Rolf Eike Beer
Am 16.08.2013 14:53, schrieb Brad King: On 08/16/2013 02:16 AM, Rolf Eike Beer wrote: Seems still broken: CTestTestMemcheckDummyPurify (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977909) CTestTestMemcheckDummyValgrind (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977910) CTe

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-16 Thread Brad King
On 08/16/2013 02:16 AM, Rolf Eike Beer wrote: > Seems still broken: > > CTestTestMemcheckDummyPurify > (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977909) > CTestTestMemcheckDummyValgrind > (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977910) > CTestTestMemcheckDummyValgrind

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-15 Thread Rolf Eike Beer
Brad King wrote: > On 08/14/2013 09:12 AM, Rolf Eike Beer wrote: > > The memcheck output is at the beginning at the output, but the test is > > only matching against the end, i.e. it ignores everything trailing. Or > > does valgrind add trailing newlines there? > > I cannot reproduce this even by

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-15 Thread Rolf Eike Beer
Am Donnerstag, 15. August 2013, 15:23:05 schrieb Brad King: > On 08/14/2013 09:12 AM, Rolf Eike Beer wrote: > > The memcheck output is at the beginning at the output, but the test is > > only matching against the end, i.e. it ignores everything trailing. Or > > does valgrind add trailing newlines t

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-15 Thread Brad King
On 08/14/2013 09:12 AM, Rolf Eike Beer wrote: > The memcheck output is at the beginning at the output, but the test is > only matching against the end, i.e. it ignores everything trailing. Or > does valgrind add trailing newlines there? I cannot reproduce this even by running the tests under cte

Re: [cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-14 Thread Rolf Eike Beer
Am 14.08.2013 14:58, schrieb Brad King: On 08/13/2013 05:30 PM, Rolf Eike Beer wrote: *Dynamic analysis tests failing or not run* CTestTestMemcheckDummyPurify (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977143) CTestTestMemcheckDummyValgrind (http://open.cdash.org/viewDynamicAnalysisF

[cmake-developers] CTestTestMemcheckDummy* failures during dynamic analysis

2013-08-14 Thread Brad King
On 08/13/2013 05:30 PM, Rolf Eike Beer wrote: >> *Dynamic analysis tests failing or not run* >> CTestTestMemcheckDummyPurify >> (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977143) >> CTestTestMemcheckDummyValgrind >> (http://open.cdash.org/viewDynamicAnalysisFile.php?id=2977144) >> CTest