diff --git a/test/Jamfile b/test/Jamfile index 37d48eb..896c927 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -1,4 +1,11 @@ -# Boost.Bind Library test Jamfile +# Boost.Bind Library test Jamfile +# +# Copyright (c) 2003 Peter Dimov +# +# Permission to copy, use, modify, sell and distribute this software +# is granted provided this copyright notice appears in all copies. +# This software is provided "as is" without express or implied +# warranty, and with no claim as to its suitability for any purpose. subproject libs/bind/test ; @@ -7,16 +14,13 @@ SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; include testing.jam ; # Make tests run by default. -DEPENDS all : test ; +DEPENDS all : bind ; { - # look in BOOST_ROOT for sources first, just in this Jamfile - local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; - test-suite "bind" - : [ run libs/bind/test/bind_test.cpp ] - [ run libs/bind/test/mem_fn_test.cpp ] - [ run libs/bind/test/mem_fn_void_test.cpp ] - [ run libs/bind/test/mem_fn_derived_test.cpp ] + : [ run bind_test.cpp ] + [ run mem_fn_test.cpp ] + [ run mem_fn_void_test.cpp ] + [ run mem_fn_derived_test.cpp ] ; }