Moved Boost.I/O tests to separate file

[SVN r20032]
This commit is contained in:
Daryle Walker
2003-09-12 04:57:05 +00:00
parent 4674eca6b3
commit 174a9d724e

34
test/Jamfile Normal file
View File

@ -0,0 +1,34 @@
# Boost.IO Library test Jamfile
#
# Copyright (c) 2003 Daryle Walker
#
# 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/io/test ;
import testing ;
# Make tests run by default.
DEPENDS all : test ;
{
test-suite "io"
: [ run ios_state_unit_test.cpp
<lib>../../../libs/test/build/boost_test_exec_monitor
: # args
: # input files
: std::locale-support
]
[ run ios_state_test.cpp
<lib>../../../libs/test/build/boost_test_exec_monitor
: # args
: # input files
: std::locale-support
]
;
}