Boost logo

Boost Testing :

From: Voronkov Konstantin (beowinkle_at_[hidden])
Date: 2005-07-28 10:33:10


Thank you, Rene!
This helped me much.

I'm going to study more about correct Jamfiles
  syntax to avoid such dump mistakes in future,

Konstantin

Rene Rivera wrote:
> 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
>
> ] ;
> }
> ====
>


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