$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84173 - in trunk/libs/tti: doc test
From: eldiener_at_[hidden]
Date: 2013-05-06 14:26:27
Author: eldiener
Date: 2013-05-06 14:26:26 EDT (Mon, 06 May 2013)
New Revision: 84173
URL: http://svn.boost.org/trac/boost/changeset/84173
Log:
Updated test targets and documentation about testing.
Text files modified: 
   trunk/libs/tti/doc/tti_tests.qbk |    21 ++++++++++-----------                   
   trunk/libs/tti/test/Jamfile.v2   |     7 ++++++-                                 
   2 files changed, 16 insertions(+), 12 deletions(-)
Modified: trunk/libs/tti/doc/tti_tests.qbk
==============================================================================
--- trunk/libs/tti/doc/tti_tests.qbk	(original)
+++ trunk/libs/tti/doc/tti_tests.qbk	2013-05-06 14:26:26 EDT (Mon, 06 May 2013)
@@ -1,5 +1,5 @@
 [/ 
-  (C) Copyright Edward Diener 2011,2012
+  (C) Copyright Edward Diener 2011,2013
   Use, modification and distribution are subject to 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).
@@ -10,18 +10,17 @@
 In the libs/tti/test subdirectory there is a jamfile 
 which can be used to test TTI functionality.
 
-Executing the jamfile without a target will run tests 
-for both basic TTI and for the variadic macro 
-portion of TTI. To successfully do that you need to 
-get the `variadic_macro_data` library from the sandbox.
-You can run tests for only the basic TTI, which is the 
-vast majority of TTI functionality, by specifying only 
-the 'tti' target when executing the jamfile, and therefore 
-you would not need the `variadic_macro_data` library. If you 
+Executing the jamfile without a target, or specifying the target 
+'tti', will run tests for both basic TTI and for the variadic macro 
+portion of TTI. You can run tests for only the basic TTI, 
+which is the vast majority of TTI functionality, by specifying 
+only the 'ttinovm' target when executing the jamfile. If you 
 just want to run the tests for the variadic macro portion 
 of TTI, specify the target as 'ttivm'.
 
-The TTI library has been tested with VC++ 8, 9, 10 and with 
-gcc 3.4.2, 3.4.5, 4.3.0, 4.4.0, 4.5.0-1, and 4.5.2-1.
+The TTI library has been tested with:
+
+* VC++ 8, 9, 10, 11
+* gcc 3.4.2, 3.4.5, 4.3.0, 4.4.0, 4.5.0-1, 4.5.2-1, 4.6.0, 4.6.1, 4.6.2, 4.7.0, and 4.7.2.
 
 [endsect]
Modified: trunk/libs/tti/test/Jamfile.v2
==============================================================================
--- trunk/libs/tti/test/Jamfile.v2	(original)
+++ trunk/libs/tti/test/Jamfile.v2	2013-05-06 14:26:26 EDT (Mon, 06 May 2013)
@@ -209,7 +209,7 @@
 #
 # All of tti, non-variadic macros
 #
-alias tti : ttimfsig ttimfsigcv ttimd ttimfn ttimfncv ttismfsig ttismd ttismfn ttidata ttifun ttitmp ttitmpcp ttity ttimemty ;
+alias ttinovm : ttimfsig ttimfsigcv ttimd ttimfn ttimfncv ttismfsig ttismd ttismfn ttidata ttifun ttitmp ttitmpcp ttity ttimemty ;
 
 alias ttitmpv : : 
         <toolset>gcc
@@ -522,3 +522,8 @@
 # All templates
 #
 alias ttitemplate_all : ttitemplate ttivm ;
+
+#
+# All tests
+#
+alias tti : ttinovm ttivm;