Files
filesystem/test/Jamfile
Dave Abrahams 608bd0b31e Use the import rule
[SVN r19968]
2003-09-08 17:38:49 +00:00

38 lines
1.3 KiB
Plaintext

# Boost Filesystem Library test Jamfile
# (C) Copyright Beman Dawes 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 libs/filesystem/test ;
# bring in rules for testing
import testing ;
# 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/default_name_check_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
]
;
}