mirror of
https://github.com/boostorg/filesystem.git
synced 2026-02-25 16:22:21 +00:00
31 lines
992 B
Plaintext
31 lines
992 B
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 ;
|
|
|
|
{
|
|
# 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/fs
|
|
]
|
|
[ run libs/filesystem/test/operations_test.cpp # compiler_status<always_show_run_output>
|
|
<lib>../../../libs/filesystem/build/fs
|
|
]
|
|
[ run libs/filesystem/test/fstream_test.cpp
|
|
<lib>../../../libs/filesystem/build/fs
|
|
]
|
|
[ run libs/filesystem/test/convenience_test.cpp
|
|
<lib>../../../libs/filesystem/build/fs
|
|
]
|
|
# [ run libs/filesystem/test/recursive_dir_itr_test.cpp
|
|
# <lib>../../../libs/filesystem/build/fs
|
|
# ]
|
|
;
|
|
}
|