|
Boost Testing : |
From: Markus Schöpflin (markus.schoepflin_at_[hidden])
Date: 2005-12-16 10:43:26
Rene Rivera wrote:
> Markus Schöpflin wrote:
>>is it possible to disable specific tests for certain compiler/platform
>>combinations?
>
> Yes. Add a <build>no to the requirements of the test.
>
Silly me, I already did something like this for multi_index. Just didn't
know about "<build>no".
I added the following to the Jamfile, which seems to work ok.
local rule special-requirements ( toolset variant : properties * )
{
if $(UNIX) && $(OS) = OSF
{
switch $(toolset)
{
case tru64cxx65* : properties =
[ replace-properties $(properties) : <build>no ] ;
}
}
return $(properties) ;
}
We even once had a discussion that there should be a more general solution
to this, IIRC.
Thanks, Markus