Files
filesystem/test/Jamfile
Beman Dawes ae62802a9d change lib name to boost_filesystem
[SVN r17959]
2003-03-17 15:33:04 +00:00

34 lines
1.0 KiB
Plaintext

# Boost Filesystem Library test Jamfile
subproject libs/filesystem/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 "filesystem"
: [ run libs/filesystem/test/path_test.cpp
<lib>../../../libs/filesystem/build/boost_filesystem
]
[ run libs/filesystem/test/operations_test.cpp
<lib>../../../libs/filesystem/build/boost_filesystem
]
[ run libs/filesystem/test/fstream_test.cpp
<lib>../../../libs/filesystem/build/boost_filesystem
]
[ run libs/filesystem/test/convenience_test.cpp
<lib>../../../libs/filesystem/build/boost_filesystem
]
# [ run libs/filesystem/test/recursive_dir_itr_test.cpp
# <lib>../../../libs/filesystem/build/boost_filesystem
# ]
;
}