From d0d87f8050d79dff86197965865e342e1f1eeca8 Mon Sep 17 00:00:00 2001 From: Jeff Garland Date: Sat, 3 Jul 2004 00:02:56 +0000 Subject: [PATCH] fix Jamfile which was checked in accidently with non-existent tests [SVN r23319] --- test/Jamfile | 65 +++++++++++++++++++--------------------------------- 1 file changed, 23 insertions(+), 42 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index 471f0f6..6d154ab 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -8,8 +8,10 @@ import testing ; # Make tests run by default. DEPENDS all : test ; +local DATE_TIME_DYNAMIC_PROPERTIES = BOOST_ALL_DYN_LINK dynamic BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ; local DATE_TIME_PROPERTIES = BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_DATE_TIME_STATIC_LINK ; + { # look in BOOST_ROOT for sources first, just in this Jamfile local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; @@ -39,23 +41,22 @@ local DATE_TIME_PROPERTIES = BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) ] [ run gregorian/testparse_date.cpp ../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) ] ; - -# test-suite date_time_gregorian_dll -# : -# [ run gregorian/testdate.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testdate_dll ] -# [ run gregorian/testdate_duration.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testdate_duration_dll ] -# [ run gregorian/testperiod.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testperiod_dll ] -# [ run gregorian/testdate_iterator.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testdate_iterator_dll ] -# [ run gregorian/testfacet.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testfacet_dll ] -# [ run gregorian/testformatters.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testformatters_dll ] -# [ run gregorian/testgenerators.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testgenerators_dll ] -# [ run gregorian/testgreg_cal.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testgreg_cal_dll ] -# [ run gregorian/testgreg_day.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testgreg_day_dll ] -# [ run gregorian/testgreg_month.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testgreg_month_dll ] -# [ run gregorian/testgreg_year.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testgreg_year_dll ] -# # this next test is commented out because it crashes on VC6 (cause unknown): -# # [ run gregorian/testparse_date.cpp ../build/boost_date_time : : : BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG BOOST_ALL_DYN_LINK dynamic : testparse_date_dll ] -# ; +test-suite date_time_gregorian_dll + : + [ run gregorian/testdate.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_dll ] + [ run gregorian/testdate_duration.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_duration_dll ] + [ run gregorian/testperiod.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testperiod_dll ] + [ run gregorian/testdate_iterator.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_iterator_dll ] + [ run gregorian/testfacet.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testfacet_dll ] + [ run gregorian/testformatters.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testformatters_dll ] + [ run gregorian/testgenerators.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgenerators_dll ] + [ run gregorian/testgreg_cal.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_cal_dll ] + [ run gregorian/testgreg_day.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_day_dll ] + [ run gregorian/testgreg_month.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_month_dll ] + [ run gregorian/testgreg_year.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_year_dll ] + # this next test is commented out because it crashes on VC6 (cause unknown): +# [ run gregorian/testparse_date.cpp ../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testparse_date_dll ] + ; test-suite date_time_posixtime : @@ -107,37 +108,17 @@ local DATE_TIME_PROPERTIES = BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) : test_time_wstream_std_config ] [ run posix_time/testtime_wstream.cpp - ../build/boost_date_time : : : BOOST_DATE_TIME_STATIC_LINK : test_time_wstream ] + ../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) : test_time_wstream ] ; - test-suite date_time_localtime - : - [ run local_time/testdst_transition_day_rule.cpp - ../build/boost_date_time - : : : $(DATE_TIME_PROPERTIES) ] - [ run local_time/testtime_zone.cpp - ../build/boost_date_time - : : : $(DATE_TIME_PROPERTIES) ] - [ run local_time/testposix_time_zone.cpp - ../build/boost_date_time - : : : $(DATE_TIME_PROPERTIES) ] -# [ run local_time/testlocal_time.cpp -# ../build/boost_date_time -# : : : $(DATE_TIME_PROPERTIES) ] - ; } -# Copyright (c) 2000 +# Copyright (c) 2000-2004 # CrystalClear Software, Inc. -# -# Permission to use, copy, modify, distribute and sell this software -# and its documentation for any purpose is hereby granted without fee, -# provided that the above copyright notice appear in all copies and -# that both that copyright notice and this permission notice appear -# in supporting documentation. CrystalClear Software makes no -# representations about the suitability of this software for any -# purpose. It is provided "as is" without express or implied warranty. +# Subject to the Boost Software License, Version 1.0. +# (See accompanying file LICENSE-1.0 or +# http://www.boost.org/LICENSE-1.0)