Test failure in MSH2Mgmsh.m [msh]

View: New views
5 Messages — Rating Filter:   Alert me  

Test failure in MSH2Mgmsh.m [msh]

by Thomas Weber-8 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

the tests in MSH2Mgmsh.m check for isempty(tmp), with a variable tmp.
For me, the variable is not empty, but has a value of "13" when running
the test.

I've tried the latest version from SVN, but I still get this error.

Octave 3.2.3, gmsh 2.4.2

Thanks
        Thomas

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Octave-dev mailing list
Octave-dev@...
https://lists.sourceforge.net/lists/listinfo/octave-dev

Re: Test failure in MSH2Mgmsh.m [msh]

by Carlo de Falco-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 11 Nov 2009, at 23:22, Thomas Weber wrote:

> Hi,
>
> the tests in MSH2Mgmsh.m check for isempty(tmp), with a variable tmp.
> For me, the variable is not empty, but has a value of "13" when  
> running
> the test.
>
> I've tried the latest version from SVN, but I still get this error.
>
> Octave 3.2.3, gmsh 2.4.2
>
> Thanks
> Thomas

Hi,
I currently cannot replicate the problem on my setup:

 >> version
ans = 3.2.3
 >> system ("gmsh --version")
2.3.1
ans = 0
 >> test MSH2Mgmsh

Generating mesh...
Processing gmsh data...
Creating PDE-tool like mesh...
Check for hanging nodes...
Setting region number in edge structure...
Deleting temporary files...
PASSES 1 out of 1 tests
 >>

I'll update gmsh and try again.
Thanks for reporting this,
c.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Octave-dev mailing list
Octave-dev@...
https://lists.sourceforge.net/lists/listinfo/octave-dev

Re: Test failure in MSH2Mgmsh.m [msh]

by Carlo de Falco-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 12 Nov 2009, at 07:41, Carlo de Falco wrote:

>
> On 11 Nov 2009, at 23:22, Thomas Weber wrote:
>
>> Hi,
>>
>> the tests in MSH2Mgmsh.m check for isempty(tmp), with a variable tmp.
>> For me, the variable is not empty, but has a value of "13" when  
>> running
>> the test.
>>
>> I've tried the latest version from SVN, but I still get this error.
>>
>> Octave 3.2.3, gmsh 2.4.2
>>
>> Thanks
>> Thomas
>
> Hi,
> I currently cannot replicate the problem on my setup:
>
> >> version
> ans = 3.2.3
> >> system ("gmsh --version")
> 2.3.1
> ans = 0
> >> test MSH2Mgmsh
>
> Generating mesh...
> Processing gmsh data...
> Creating PDE-tool like mesh...
> Check for hanging nodes...
> Setting region number in edge structure...
> Deleting temporary files...
> PASSES 1 out of 1 tests
> >>
>
> I'll update gmsh and try again.
> Thanks for reporting this,
> c.

I updated gmsh to the latest binary release but I still cannot  
reproduce the problem:

 >> test MSH2Mgmsh

Generating mesh...
Processing gmsh data...
Creating PDE-tool like mesh...
Check for hanging nodes...
Setting region number in edge structure...
Deleting temporary files...
PASSES 1 out of 1 tests
 >> system ("gmsh --version")
2.4.2
ans = 0
 >>

What system are you running the test on?
could you please try the line

%! system("rm circle.geo");

to

%! save circle.mesh mesh

and send me the files "circle.geo" and "circle.mesh"?
thanks,
c.



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Octave-dev mailing list
Octave-dev@...
https://lists.sourceforge.net/lists/listinfo/octave-dev

Re: Test failure in MSH2Mgmsh.m [msh]

by Massimiliano Culpo :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

I was able to reproduce the error and I committed a bug-fix to the svn
repository.

octave:1> system("gmsh --version");
2.4.2
octave:2> test MSH2Mgmsh

Generating mesh...
Processing gmsh data...
Creating PDE-tool like mesh...
Check for hanging nodes...
Setting region number in edge structure...
Deleting temporary files...
PASSES 1 out of 1 tests
octave:3>

Can you please confirm it works?

On Fri, 2009-11-13 at 09:44 +0100, Carlo de Falco wrote:

> On 12 Nov 2009, at 07:41, Carlo de Falco wrote:
>
> >
> > On 11 Nov 2009, at 23:22, Thomas Weber wrote:
> >
> >> Hi,
> >>
> >> the tests in MSH2Mgmsh.m check for isempty(tmp), with a variable tmp.
> >> For me, the variable is not empty, but has a value of "13" when  
> >> running
> >> the test.
> >>
> >> I've tried the latest version from SVN, but I still get this error.
> >>
> >> Octave 3.2.3, gmsh 2.4.2
> >>
> >> Thanks
> >> Thomas
> >
> > Hi,
> > I currently cannot replicate the problem on my setup:
> >
> > >> version
> > ans = 3.2.3
> > >> system ("gmsh --version")
> > 2.3.1
> > ans = 0
> > >> test MSH2Mgmsh
> >
> > Generating mesh...
> > Processing gmsh data...
> > Creating PDE-tool like mesh...
> > Check for hanging nodes...
> > Setting region number in edge structure...
> > Deleting temporary files...
> > PASSES 1 out of 1 tests
> > >>
> >
> > I'll update gmsh and try again.
> > Thanks for reporting this,
> > c.
>
> I updated gmsh to the latest binary release but I still cannot  
> reproduce the problem:
>
>  >> test MSH2Mgmsh
>
> Generating mesh...
> Processing gmsh data...
> Creating PDE-tool like mesh...
> Check for hanging nodes...
> Setting region number in edge structure...
> Deleting temporary files...
> PASSES 1 out of 1 tests
>  >> system ("gmsh --version")
> 2.4.2
> ans = 0
>  >>
>
> What system are you running the test on?
> could you please try the line
>
> %! system("rm circle.geo");
>
> to
>
> %! save circle.mesh mesh
>
> and send me the files "circle.geo" and "circle.mesh"?
> thanks,
> c.
>
>




------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Octave-dev mailing list
Octave-dev@...
https://lists.sourceforge.net/lists/listinfo/octave-dev

Re: Test failure in MSH2Mgmsh.m [msh]

by Carlo de Falco-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


On 13 Nov 2009, at 10:46, Massimiliano Culpo wrote:

> I was able to reproduce the error and I committed a bug-fix to the svn
> repository.
>
> octave:1> system("gmsh --version");
> 2.4.2
> octave:2> test MSH2Mgmsh
>
> Generating mesh...
> Processing gmsh data...
> Creating PDE-tool like mesh...
> Check for hanging nodes...
> Setting region number in edge structure...
> Deleting temporary files...
> PASSES 1 out of 1 tests
> octave:3>
>
> Can you please confirm it works?

MSH2Mgmsh passes the test on my system.
Thanks,
c.

------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
trial. Simplify your report design, integration and deployment - and focus on
what you do best, core application coding. Discover what's new with
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Octave-dev mailing list
Octave-dev@...
https://lists.sourceforge.net/lists/listinfo/octave-dev