Re: [MTT users] MTT Error on SLES11

2009-04-08 Thread Rafael Folco
Ethan, Jeff, Sorry for the perl confusion, nevermind... Below is attached the log and ini files, and also how I run MTT. Thanks, Rafael client/mtt -d -v -p -f openmpi.ini 2>&1 |tee test.log ... *** Run test phase starting >> Test run [trivial] Evaluating: trivial Found a match! trivial

Re: [MTT users] MTT Error on SLES11

2009-04-08 Thread Jeff Squyres (jsquyres)
Btw, I agree w ethan: the syntax looks good to me. @ tells how to cast the reference; it doesn't dereference to get the first element. But we need to see your ini file to be sure (I don't have the mtt code here w me to check it for sure). -jms Sent from my PDA. No type good. - Original

Re: [MTT users] MTT Error on SLES11

2009-04-08 Thread Ethan Mallove
On Wed, Apr/08/2009 11:36:05AM, Rafael Folco wrote: > Well, I took a look at /tmp/ompi-core-testers/lib/MTT/Values.pm line 75. > > This piece of code looks wrong to me: > > if ($#{@$ret} < 0) { > > $ret references an array > @$ret points to the first element of this array > $# returns the

Re: [MTT users] MTT Error on SLES11

2009-04-08 Thread Rafael Folco
Well, I took a look at /tmp/ompi-core-testers/lib/MTT/Values.pm line 75. This piece of code looks wrong to me: if ($#{@$ret} < 0) { $ret references an array @$ret points to the first element of this array $# returns the number of elements So this line is trying to count elements of the first