$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Gennadiy Rozental (rogeeff_at_[hidden])
Date: 2002-07-24 12:48:07
> > Also as I mentioned in some
> >other post, current Jamfile has a problem with function_test. Look into
> you
> >table: you have one function test, while in fact Jamfile has two. I
> managed
> >to create complete list.
>
> Ah! Both were named function_test.cpp. When that happens, the test has to
> be given an explicit name.
That what Rene proposed. It's working. But unfortunately it's not clean.
run libs/functional/function_test.cpp : : : : functional_test ;
run libs/function/test/function_test.cpp : : : : function_test ;
Now
bjam function_test - will invoke both target updating.
bjam functional_test - will invoke first target updating.
Gennadiy.