From ad8e8b1087cd2aca00a201953fae07a051e43e0a Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 13 Apr 2008 22:47:01 +0000 Subject: [PATCH] Move functional tests into canonical test subdir structure. [SVN r44383] --- index.html | 2 +- test/Jamfile.v2 | 9 +++++++++ function_test.cpp => test/function_test.cpp | 0 3 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 test/Jamfile.v2 rename function_test.cpp => test/function_test.cpp (100%) diff --git a/index.html b/index.html index aea70a6..29ea0d2 100644 --- a/index.html +++ b/index.html @@ -161,7 +161,7 @@ std::for_each(c.begin(), c.end(),

Compiler Compatibility

-

The header and test program have been +

The header and test program have been compiled with the following compilers:

diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 new file mode 100644 index 0000000..dbe379c --- /dev/null +++ b/test/Jamfile.v2 @@ -0,0 +1,9 @@ +#~ Copyright Rene Rivera 2008 +#~ Distributed under the Boost Software License, Version 1.0. +#~ (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) + +import testing ; + +test-suite functional : + [ run function_test.cpp ] + ; diff --git a/function_test.cpp b/test/function_test.cpp similarity index 100% rename from function_test.cpp rename to test/function_test.cpp