How to add examples ot the regression testing?

I want to make sure that all examples are successfully compilable. What is the best way to do this? Gennadiy

In the serialization library I make a small program: test_demo.cpp which contained: #define main test_main #include ../demo/demo.cpp and added it to the test set. I' m not sure if that answers your question - but there it is. Robert Ramey Gennadiy Rozental wrote:
I want to make sure that all examples are successfully compilable.
What is the best way to do this?
Gennadiy
_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

"Robert Ramey" <ramey@rrsd.com> wrote in message news:cvc10u$p0k$1@sea.gmane.org...
In the serialization library I make a small program:
test_demo.cpp
which contained:
#define main test_main #include ../demo/demo.cpp
and added it to the test set.
I' m not sure if that answers your question - but there it is.
No. That not exactly what I want. I just want to test whatever I have in /examples directory Gennadiy

Gennadiy Rozental writes:
No. That not exactly what I want. I just want to test whatever I have in /examples directory
Just include the corresponding Jamfile into "$BOOST_ROOT/status/Jamfile". See regex for an example. -- Aleksey Gurtovoy MetaCommunications Engineering
participants (3)
-
Aleksey Gurtovoy
-
Gennadiy Rozental
-
Robert Ramey