|
Boost Testing : |
From: Beman Dawes (bdawes_at_[hidden])
Date: 2005-06-06 21:20:52
"Stephen W. Carson" <StephenC_at_[hidden]> wrote in message
news:42A468DD.8050104_at_dirxion.com...
> Beman Dawes wrote:
>
>>FWIW, the filesystem problem has supposedly been fixed - the Dirxion tests
>>haven't run since Thursday, so I'm waiting for them to be sure.
>>
> Still not fixed :-(. Here is the latest:
> http://tinyurl.com/d4oyu
Thanks! In the meantime, I've gotten email from Metrowerks identifying the
exact bug in their code. I checked in a better fix an hour ago; let's hope
that will do the job.
--Beman
PS: Here is the original Metrowerks code:
if (info.st_mode & S_IFDIR == S_IFDIR) // Wrong!
Howard Hinnant spotted the obvious, which had eluded their C library folks:
if ((info.st_mode & S_IFDIR) == S_IFDIR) // Correct