Boost logo

Boost Testing :

From: Rene Rivera (grafik.list_at_[hidden])
Date: 2005-07-28 10:11:40


Voronkov Konstantin wrote:
> Hello again,
>
> I found the source of mine problem is line in Jame file:
> <include>S:/QA/Technical/UnitTesting/Frameworks/Evaluation/RegressionTests/boost_1_32_0
>
> if I specify additional include folder property then Boost.Build
> can not find the *.run file. What did I done wrong and why
> I can not specify include?
>
>
> ****Here is Jamfile which causes such problem
>
> subproject myTest/test ;
> import testing ;
> DEPENDS all : myTest ;
> {
> local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
> test-suite "myTest"
> : [ run testPassSample.cpp
>
> # THIS IS THE VERY LINE WHICH BREAKS BOOST.BUILD
> :
> <include>S:/QA/Technical/UnitTesting/Frameworks/Evaluation/RegressionTests/boost_1_32_0
> ] ;
> }

That should be:

====
subproject myTest/test ;
import testing ;
DEPENDS all : myTest ;
{
      local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
      test-suite "myTest"
         : [ run testPassSample.cpp
             : #args
             : #input-files
             : #requirements
<include>S:/QA/Technical/UnitTesting/Frameworks/Evaluation/RegressionTests/boost_1_32_0

           ] ;
}
====

-- 
-- Grafik - Don't Assume Anything
-- Redshift Software, Inc. - http://redshift-software.com
-- rrivera/acm.org - grafik/redshift-software.com
-- 102708583/icq - grafikrobot/aim - Grafik/jabber.org

Boost-testing list run by mbergal at meta-comm.com