| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352 |
- # Boost regression-testing Jamfile
- # (C) Copyright David Abrahams 2002. 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 status ;
- # bring in the rules for testing
- SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
- include testing.jam ;
- # Note that the Compiler Status Report HTML generator scans
- # these rule invocations to find test type (compile, run, etc.)
- # That program is quite stupid and needs help, including test names
- # (if supplied) which are unambiguous, not the same as a .cpp file
- # name, and preceded and followed by a space. The .cpp file name must
- # be given on the same line as the test type.
- #
- # If the line with the test type includes the comment
- # "# compiler_status<always_show_run_output>" then
- # run output will be displayed even if the test passes.
- {
- # look in BOOST_ROOT for sources first, just in this Jamfile
- local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
-
- test-suite "bind"
- : [ run libs/bind/bind_test.cpp ]
- [ run libs/bind/mem_fn_test.cpp ]
- [ run libs/bind/mem_fn_void_test.cpp ]
- [ run libs/bind/mem_fn_derived_test.cpp ]
- ;
- test-suite config
- : [ run libs/config/test/config_test.cpp <lib>../libs/test/build/test_exec_monitor
- : #args
- : #input-files
- : #requirements
- <threading>multi
- ]
- [ run libs/config/test/config_info.cpp ] # compiler_status<always_show_run_output>
- [ run libs/config/test/limits_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- run libs/any/any_test.cpp ;
- test-suite array
- : [ run libs/array/array1.cpp ]
- [ run libs/array/array2.cpp ]
- [ run libs/array/array3.cpp ]
- [ run libs/array/array4.cpp ]
- [ run libs/array/array5.cpp ]
- ;
- test-suite concept_check
- : [ compile libs/concept_check/concept_check_test.cpp ]
- [ compile libs/concept_check/class_concept_check_test.cpp ]
- [ link-fail libs/concept_check/concept_check_fail_expected.cpp ]
- [ link-fail libs/concept_check/class_concept_fail_expected.cpp ]
- ;
- test-suite conversion
- : [ run libs/conversion/cast_test.cpp ]
- [ run libs/conversion/lexical_cast_test.cpp ]
- ;
- run libs/crc/crc_test.cpp <lib>../libs/test/build/test_exec_monitor ;
- test-suite date_time
- : [ run libs/date_time/test/testgregorian_calendar.cpp
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testdate.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testdate_duration.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testdate_iterator.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testfacet.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testformatters.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testgenerators.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testgreg_cal.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testgreg_day.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testgreg_month.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/gregorian/testparse_date.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testc_local_adjustor.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testclock.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testdst_rules.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testduration.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testiterator.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testparse_time.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testperiod.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/posix_time/testtime.cpp
- <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
- : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
- [ run libs/date_time/test/testint_adapter.cpp ]
- [ run libs/date_time/test/testtime_resolution_traits.cpp ]
- [ run libs/date_time/test/testwrapping_int.cpp ]
- [ run libs/date_time/test/testconstrained_value.cpp ]
- ;
- test-suite disjoint_sets
- : [ run libs/disjoint_sets/disjoint_set_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- test-suite dynamic_bitset
- : [ run libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- test-suite format
- : [ run libs/format/test/format_test1.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/format/test/format_test2.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
-
- test-suite function
- : [ run libs/function/test/function_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/function/test/function_n_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/function/test/allocator_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/function/test/stateless_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ compile-fail libs/function/test/function_test_fail1.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ compile-fail libs/function/test/function_test_fail2.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- run libs/functional/function_test.cpp ;
- run libs/graph/test/graph.cpp ;
- test-suite integer
- : [ run libs/integer/cstdint_test.cpp ]
- [ run libs/integer/integer_test.cpp ]
- [ run libs/integer/integer_traits_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- run
- libs/io/test/ios_state_test.cpp <lib>../libs/test/build/test_exec_monitor # sources
- : # args
- : # input-files
- : <runtime-link>static # requirements (static runtime required by Metrowerks)
- ;
- test-suite lambda
- : [ run libs/lambda/test/bind_tests_simple.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/bind_tests_advanced.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/bind_tests_simple_f_refs.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/bll_and_function.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/cast_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/constructor_tests.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/control_structures.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/exception_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/extending_rt_traits.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/is_instance_of_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/member_pointer_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/operator_tests_simple.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/phoenix_control_structures.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/lambda/test/switch_construct.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- test-suite math
- : [ run libs/math/test/common_factor_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/math/octonion/octonion_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/math/quaternion/quaternion_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/math/special_functions/special_functions_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- run libs/pool/test/test_pool_alloc.cpp <lib>../libs/test/build/test_exec_monitor ;
- test-suite preprocessor
- : [ compile libs/preprocessor/test/arithmetic.cpp ]
- [ compile libs/preprocessor/test/array.cpp ]
- [ compile libs/preprocessor/test/comparison.cpp ]
- [ compile libs/preprocessor/test/control.cpp ]
- [ compile libs/preprocessor/test/debug.cpp ]
- [ compile libs/preprocessor/test/facilities.cpp ]
- [ compile libs/preprocessor/test/iteration.cpp ]
- [ compile libs/preprocessor/test/list.cpp ]
- [ compile libs/preprocessor/test/logical.cpp ]
- [ compile libs/preprocessor/test/repetition.cpp ]
- [ compile libs/preprocessor/test/selection.cpp ]
- [ compile libs/preprocessor/test/slot.cpp ]
- [ compile libs/preprocessor/test/tuple.cpp ]
- ;
- test-suite property_map
- : [ compile libs/property_map/property_map_cc.cpp ]
- ;
- test-suite rational
- : [ run libs/rational/rational_example.cpp ]
- [ run libs/rational/rational_test.cpp ]
- ;
- test-suite random
- : [ run libs/random/random_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/random/random_demo.cpp ]
- ;
- {
- local test-dir = $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)test$(SLASH)regress$(SLASH) ;
- local test-files = $(test-dir)tests.txt
- # dwa -- not sure if this is generally applicable
- # $(test-dir)test1252.txt
- ;
- test-suite regex
- : [ run libs/regex/test/regress/parse.cpp libs/regex/test/regress/regress.cpp libs/regex/test/regress/tests.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- <lib>../libs/test/build/prg_exec_monitor
- :
- $(test-files)
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regress ]
- [ run libs/regex/test/regress/parse.cpp libs/regex/test/regress/regress.cpp libs/regex/test/regress/tests.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- <lib>../libs/test/build/prg_exec_monitor
- :
- $(test-files)
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>TEST_UNICODE=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- wregress ]
- [ run libs/regex/test/c_compiler_checks/posix_api_check.c
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- <lib>../libs/test/build/prg_exec_monitor
- :
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- posix_api_check_c ]
- [ run libs/regex/test/c_compiler_checks/wide_posix_api_check.c
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- wide_posix_api_check_c ]
- [ run libs/regex/test/c_compiler_checks/posix_api_check.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- ]
- [ run libs/regex/test/c_compiler_checks/wide_posix_api_check.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- ]
- [ run libs/regex/example/timer/regex_timer.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)example$(SLASH)timer$(SLASH)input_script.txt
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_timer
- ]
- [ run libs/regex/example/jgrep/jgrep.cpp libs/regex/example/jgrep/main.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- -n boost/ $(BOOST_ROOT)$(SLASH)boost$(SLASH)regex.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- jgrep
- ]
- [ run libs/regex/example/snippets/credit_card_example.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- credit_card_example
- ]
- [ run libs/regex/example/snippets/partial_regex_grep.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- partial_regex_grep
- ]
- [ run libs/regex/example/snippets/partial_regex_match.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- 1234-5678-8765-4
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- partial_regex_match
- ]
- [ run libs/regex/example/snippets/regex_grep_example_1.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_grep_example_1
- ]
- [ run libs/regex/example/snippets/regex_grep_example_2.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_grep_example_2
- ]
- [ run libs/regex/example/snippets/regex_grep_example_3.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_grep_example_3
- ]
- [ run libs/regex/example/snippets/regex_grep_example_4.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_grep_example_4
- ]
- [ run libs/regex/example/snippets/regex_match_example.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- -auto
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_match_example
- ]
- [ run libs/regex/example/snippets/regex_merge_example.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_merge_example
- ]
- [ run libs/regex/example/snippets/regex_search_example.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_search_example
- ]
- [ run libs/regex/example/snippets/regex_split_example_1.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- -auto
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_split_example_1
- ]
- [ run libs/regex/example/snippets/regex_split_example_2.cpp
- <lib>../libs/regex/build/boost_regex$(SUFLIB)
- :
- $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
- :
- :
- <define>BOOST_REGEX_NO_LIB=1
- <define>BOOST_REGEX_STATIC_LINK=1
- :
- regex_split_example_2
- ]
- ;
- }
- test-suite signals
- : [ run libs/signals/test/dead_slot_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- [ run libs/signals/test/deletion_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- [ run libs/signals/test/ordering_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- [ run libs/signals/test/signal_n_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- [ run libs/signals/test/signal_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- [ run libs/signals/test/trackable_test.cpp
- <lib>../libs/test/build/test_exec_monitor
- <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
- ;
- test-suite smart_ptr
- : [ run libs/smart_ptr/smart_ptr_test.cpp ]
- [ run libs/smart_ptr/shared_ptr_test.cpp ]
- [ compile-fail libs/smart_ptr/shared_ptr_assign_fail.cpp ]
- ;
- test-suite static_assert
- : [ compile libs/static_assert/static_assert_test.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_1.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_2.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_3.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_4.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_5.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_6.cpp ]
- [ compile-fail libs/static_assert/static_assert_test_fail_7.cpp ]
- [ link-fail libs/static_assert/static_assert_test_fail_8.cpp ]
- ;
- subinclude libs/test/test ;
-
- {
- local threadmon ;
- local thread-sources ;
- local thread-requirements ;
- if $(NT)
- {
- threadmon = <dll>../libs/thread/build/boost_threadmon ;
- }
- thread-sources = <lib>../libs/thread/build/boost_thread
- <lib>../libs/test/build/unit_test_framework
- $(threadmon)
- ;
- thread-requirements = <threading>multi ;
- test-suite threads
- : [ run libs/thread/test/test_thread.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- [ run libs/thread/test/test_mutex.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- [ run libs/thread/test/test_condition.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- [ run libs/thread/test/test_tss.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- [ run libs/thread/test/test_once.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- [ run libs/thread/test/test_xtime.cpp $(thread-sources)
- : #args
- : #input-files
- : $(thread-requirements)
- ]
- ;
- }
- compile libs/timer/timer_test.cpp ;
- test-suite tokenizer
- : [ run libs/tokenizer/examples.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/tokenizer/simple_example_1.cpp ]
- [ run libs/tokenizer/simple_example_2.cpp ]
- [ run libs/tokenizer/simple_example_3.cpp ]
- [ run libs/tokenizer/simple_example_4.cpp ]
- [ run libs/tokenizer/simple_example_5.cpp ]
- ;
- test-suite tuple
- : [ run libs/tuple/test/tuple_test_bench.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/tuple/test/io_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- test-suite iterator_adaptors
- : [ run libs/utility/counting_iterator_test.cpp : # args
- : # input files
- : # requirements
- # borland warns incorrectly in this case, so often that
- # successful compilation is prevented.
- <borland><*><cxxflags>"-w-8091 -w-8092"
- ]
- [ run libs/utility/iterator_adaptor_test.cpp ]
- [ compile-fail libs/utility/iter_adaptor_fail_expected1.cpp ]
- [ compile-fail libs/utility/iter_adaptor_fail_expected2.cpp ]
- [ run libs/utility/transform_iterator_test.cpp ]
- [ run libs/utility/indirect_iterator_test.cpp ]
- [ run libs/utility/iter_traits_gen_test.cpp ]
- [ run libs/utility/iterator_adaptor_examples.cpp ]
- [ run libs/utility/counting_iterator_example.cpp ]
- [ run libs/utility/filter_iterator_example.cpp ]
- [ run libs/utility/fun_out_iter_example.cpp ]
- [ run libs/utility/indirect_iterator_example.cpp ]
- [ run libs/utility/projection_iterator_example.cpp ]
- [ run libs/utility/reverse_iterator_example.cpp ]
- [ run libs/utility/transform_iterator_example.cpp ]
- ;
- test-suite ublas
- : [ run libs/numeric/ublas/test1/test1.cpp
- libs/numeric/ublas/test1/test11.cpp
- libs/numeric/ublas/test1/test12.cpp
- libs/numeric/ublas/test1/test13.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/test2/test2.cpp
- libs/numeric/ublas/test2/test21.cpp
- libs/numeric/ublas/test2/test22.cpp
- libs/numeric/ublas/test2/test23.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/test3/test3.cpp
- libs/numeric/ublas/test3/test31.cpp
- libs/numeric/ublas/test3/test32.cpp
- libs/numeric/ublas/test3/test33.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/test4/test4.cpp
- libs/numeric/ublas/test4/test41.cpp
- libs/numeric/ublas/test4/test42.cpp
- libs/numeric/ublas/test4/test43.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/test5/test5.cpp
- libs/numeric/ublas/test5/test51.cpp
- libs/numeric/ublas/test5/test52.cpp
- libs/numeric/ublas/test5/test53.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/test6/test6.cpp
- libs/numeric/ublas/test6/test61.cpp
- libs/numeric/ublas/test6/test62.cpp
- libs/numeric/ublas/test6/test63.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- [ run libs/numeric/ublas/concepts.cpp
- : # args
- : # input files
- : # requirements
- # borland warns so often that successful compilation is prevented.
- <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
- ]
- ;
- test-suite multi_array
- : [ run libs/multi_array/test/constructors.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/access.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/compare.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/iterators.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/slice.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/assign.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/index_bases.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/storage_order.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/reshape.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/range1.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/idxgen1.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/multi_array/test/stl_interaction.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ compile libs/multi_array/test/concept_checks.cpp ]
- [ compile-fail libs/multi_array/test/fail_cbracket.cpp ]
- [ compile-fail libs/multi_array/test/fail_cdata.cpp ]
- [ compile-fail libs/multi_array/test/fail_citerator.cpp ]
- [ compile-fail libs/multi_array/test/fail_cparen.cpp ]
- [ compile-fail libs/multi_array/test/fail_criterator.cpp ]
- [ compile-fail libs/multi_array/test/fail_csubarray.cpp ]
- [ compile-fail libs/multi_array/test/fail_csubarray2.cpp ]
- [ compile-fail libs/multi_array/test/fail_csubarray3.cpp ]
- [ compile-fail libs/multi_array/test/fail_cview.cpp ]
- [ compile-fail libs/multi_array/test/fail_cview2.cpp ]
- [ compile-fail libs/multi_array/test/fail_cview3.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cbracket.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cdata.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_citerator.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cparen.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_criterator.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_csubarray.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_csubarray2.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_csubarray3.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cview.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cview2.cpp ]
- [ compile-fail libs/multi_array/test/fail_ref_cview3.cpp ]
- ;
- test-suite utility
- :
- [ run libs/utility/iterator_traits_test.cpp ]
- [ run libs/utility/iterators_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ compile-fail libs/utility/noncopyable_test.cpp ]
- [ run libs/utility/numeric_traits_test.cpp ]
- [ run libs/utility/operators_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/utility/tie_example.cpp ]
- [ run libs/utility/binary_search_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/utility/call_traits_test.cpp : -u ]
- [ compile-fail libs/utility/checked_delete_test.cpp ]
- [ run libs/utility/compressed_pair_test.cpp <lib>../libs/test/build/test_exec_monitor : -u ]
- [ run libs/utility/addressof_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- [ run libs/utility/ref_test.cpp <lib>../libs/test/build/test_exec_monitor ]
- ;
- {
- local TYPE_TRAIT_PATH = "../libs/type_traits/test/" ;
- local TEST_LIB_PATH = "../libs/test/build/" ;
-
- test-suite type_traits :
- [ lib type_traits_init : $(TYPE_TRAIT_PATH)init.cpp
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)add_const_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)add_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)add_reference_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)add_volatile_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)alignment_of_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)function_traits_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_nothrow_assign_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_nothrow_constructor_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_nothrow_copy_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_trivial_assign_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_trivial_constructor_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_trivial_copy_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)has_trivial_destructor_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_arithmetic_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_array_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_base_and_derived_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_class_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_compound_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_const_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_convertible_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_empty_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_enum_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_float_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_function_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_fundamental_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_integral_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_member_function_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_member_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_object_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_pod_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_reference_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_same_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_scalar_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_union_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_void_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)is_volatile_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_bounds_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_const_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_cv_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_reference_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)remove_volatile_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)tricky_abstract_type_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)tricky_add_pointer_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)tricky_function_type_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)tricky_incomplete_type_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)tricky_partial_specialization_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
-
- [ run $(TYPE_TRAIT_PATH)type_with_alignment_test.cpp
- <lib>$(TYPE_TRAIT_PATH)type_traits_init
- <lib>$(TEST_LIB_PATH)unit_test_framework
- :
- --report_level=detailed --build_info=yes --log_level=messages
- :
- :
- <sysinclude>$(BOOST_ROOT)
- :
- ]
-
- ;
- }
- }
|