From 8c09072ead860b87d2ce0f82f0958b5f196f0bae Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Thu, 13 Feb 2003 15:41:26 +0000 Subject: [PATCH] Added copyright to Jamfiles. [SVN r17363] --- test/Jamfile | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) 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 ] ; }