Files
date_time/test/Jamfile
Jeff Garland de7b0ffb21 remove DATE_TIME_INLINE macro
[SVN r16951]
2003-01-19 22:30:11 +00:00

68 lines
2.4 KiB
Plaintext

# Testing Jamfile
subproject libs/date_time/test ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Make tests run by default.
DEPENDS all : test ;
{
# look in BOOST_ROOT for sources first, just in this Jamfile
local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
test-suite date_time_core
:
[ run testint_adapter.cpp ]
[ run testtime_resolution_traits.cpp ]
[ run testwrapping_int.cpp ]
[ run testconstrained_value.cpp ]
[ run testgregorian_calendar.cpp ]
;
test-suite date_time_gregorian
:
[ run gregorian/testdate.cpp <lib>../build/boost_date_time ]
[ run gregorian/testdate_duration.cpp <lib>../build/boost_date_time ]
[ run gregorian/testdate_iterator.cpp <lib>../build/boost_date_time ]
[ run gregorian/testfacet.cpp <lib>../build/boost_date_time ]
[ run gregorian/testformatters.cpp <lib>../build/boost_date_time ]
[ run gregorian/testgenerators.cpp <lib>../build/boost_date_time ]
[ run gregorian/testgreg_cal.cpp <lib>../build/boost_date_time ]
[ run gregorian/testgreg_day.cpp <lib>../build/boost_date_time ]
[ run gregorian/testgreg_month.cpp <lib>../build/boost_date_time ]
[ run gregorian/testparse_date.cpp <lib>../build/boost_date_time ]
;
test-suite date_time_posixtime
:
[ run posix_time/testc_local_adjustor.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testclock.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testdst_rules.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testduration.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testiterator.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testparse_time.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testperiod.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
[ run posix_time/testtime.cpp
<lib>../build/boost_date_time
: : : <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
;
}