mirror of
https://github.com/boostorg/date_time.git
synced 2026-02-21 15:02:27 +00:00
fix Jamfile which was checked in accidently with non-existent tests
[SVN r23319]
This commit is contained in:
65
test/Jamfile
65
test/Jamfile
@@ -8,8 +8,10 @@ import testing ;
|
||||
# Make tests run by default.
|
||||
DEPENDS all : test ;
|
||||
|
||||
local DATE_TIME_DYNAMIC_PROPERTIES = <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ;
|
||||
local DATE_TIME_PROPERTIES = <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>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 = <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <defi
|
||||
[ run gregorian/testgreg_year.cpp <lib>../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) ]
|
||||
[ run gregorian/testparse_date.cpp <lib>../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) ]
|
||||
;
|
||||
|
||||
# test-suite date_time_gregorian_dll
|
||||
# :
|
||||
# [ run gregorian/testdate.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testdate_dll ]
|
||||
# [ run gregorian/testdate_duration.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testdate_duration_dll ]
|
||||
# [ run gregorian/testperiod.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testperiod_dll ]
|
||||
# [ run gregorian/testdate_iterator.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testdate_iterator_dll ]
|
||||
# [ run gregorian/testfacet.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testfacet_dll ]
|
||||
# [ run gregorian/testformatters.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testformatters_dll ]
|
||||
# [ run gregorian/testgenerators.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testgenerators_dll ]
|
||||
# [ run gregorian/testgreg_cal.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testgreg_cal_dll ]
|
||||
# [ run gregorian/testgreg_day.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testgreg_day_dll ]
|
||||
# [ run gregorian/testgreg_month.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testgreg_month_dll ]
|
||||
# [ run gregorian/testgreg_year.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testgreg_year_dll ]
|
||||
# # this next test is commented out because it crashes on VC6 (cause unknown):
|
||||
# # [ run gregorian/testparse_date.cpp <dll>../build/boost_date_time : : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <define>BOOST_ALL_DYN_LINK <runtime-link>dynamic : testparse_date_dll ]
|
||||
# ;
|
||||
test-suite date_time_gregorian_dll
|
||||
:
|
||||
[ run gregorian/testdate.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_dll ]
|
||||
[ run gregorian/testdate_duration.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_duration_dll ]
|
||||
[ run gregorian/testperiod.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testperiod_dll ]
|
||||
[ run gregorian/testdate_iterator.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testdate_iterator_dll ]
|
||||
[ run gregorian/testfacet.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testfacet_dll ]
|
||||
[ run gregorian/testformatters.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testformatters_dll ]
|
||||
[ run gregorian/testgenerators.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgenerators_dll ]
|
||||
[ run gregorian/testgreg_cal.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_cal_dll ]
|
||||
[ run gregorian/testgreg_day.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_day_dll ]
|
||||
[ run gregorian/testgreg_month.cpp <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testgreg_month_dll ]
|
||||
[ run gregorian/testgreg_year.cpp <dll>../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 <dll>../build/boost_date_time : : : $(DATE_TIME_DYNAMIC_PROPERTIES) : testparse_date_dll ]
|
||||
;
|
||||
|
||||
test-suite date_time_posixtime
|
||||
:
|
||||
@@ -107,37 +108,17 @@ local DATE_TIME_PROPERTIES = <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG <defi
|
||||
[ run posix_time/testtime_wstream.cpp
|
||||
<lib>../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) : test_time_wstream_std_config ]
|
||||
[ run posix_time/testtime_wstream.cpp
|
||||
<lib>../build/boost_date_time : : : <define>BOOST_DATE_TIME_STATIC_LINK : test_time_wstream ]
|
||||
<lib>../build/boost_date_time : : : $(DATE_TIME_PROPERTIES) : test_time_wstream ]
|
||||
;
|
||||
|
||||
test-suite date_time_localtime
|
||||
:
|
||||
[ run local_time/testdst_transition_day_rule.cpp
|
||||
<lib>../build/boost_date_time
|
||||
: : : $(DATE_TIME_PROPERTIES) ]
|
||||
[ run local_time/testtime_zone.cpp
|
||||
<lib>../build/boost_date_time
|
||||
: : : $(DATE_TIME_PROPERTIES) ]
|
||||
[ run local_time/testposix_time_zone.cpp
|
||||
<lib>../build/boost_date_time
|
||||
: : : $(DATE_TIME_PROPERTIES) ]
|
||||
# [ run local_time/testlocal_time.cpp
|
||||
# <lib>../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)
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user