[OMPI devel] Debugger question

2012-03-26 Thread Barrett, Brian W
Hi all - In ompi/debuggers/predefined_gap_test.c, there's set of tests looking at all the fields in a window structure. The other source files in ompi/debuggers/ don't seem to use most of those fields (since they really shouldn't be useful to a debugger anyway). I removed some of the fields as p

Re: [OMPI devel] Debugger question

2012-03-26 Thread Jeffrey Squyres
I don't think so. IIRC, that test is mainly a sanity check to ensure we haven't broken anything in the overall debugging scheme -- not necessarily that we are using those specific fields. (Terry: can you confirm?) Could you replace one or two of those fields with any other fields on the new w

Re: [OMPI devel] [EXTERNAL] Re: Debugger question

2012-03-26 Thread Barrett, Brian W
Thanks for the info. The window's going to be smaller (the predefined code already existed, so it shouldn¹t matter that much). There were a bunch of fields that really should have been in the module structure that was kept in the window previously. Brian On 3/26/12 11:44 AM, "Jeffrey Squyres"

Re: [OMPI devel] [EXTERNAL] Re: Debugger question

2012-03-26 Thread TERRY DONTJE
Jeff was right in the recollection that this was mainly to test out that accessing the fields in a structure was going to work in the debugger plugin. If you remove some fields in ompi_win_t you can just remove the corresponding GAP_CHECK line in the test. If you are removing fields in the mi