From 174a9d724e15225f04be7959366aa3515f949214 Mon Sep 17 00:00:00 2001 From: Daryle Walker Date: Fri, 12 Sep 2003 04:57:05 +0000 Subject: [PATCH] Moved Boost.I/O tests to separate file [SVN r20032] --- test/Jamfile | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 test/Jamfile diff --git a/test/Jamfile b/test/Jamfile new file mode 100644 index 0000000..0b40abb --- /dev/null +++ b/test/Jamfile @@ -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 + ../../../libs/test/build/boost_test_exec_monitor + : # args + : # input files + : std::locale-support + ] + + [ run ios_state_test.cpp + ../../../libs/test/build/boost_test_exec_monitor + : # args + : # input files + : std::locale-support + ] + ; +}