$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62975 - in sandbox/SOC/2010/bit_masks/lib/integer/test: . bft_testing bft_testing/compile_pass
From: bbartmanboost_at_[hidden]
Date: 2010-06-15 11:36:08
Author: bbartman
Date: 2010-06-15 11:36:07 EDT (Tue, 15 Jun 2010)
New Revision: 62975
URL: http://svn.boost.org/trac/boost/changeset/62975
Log:
adding testing files for fusion includes and fusion integration/extension
Added:
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp   (contents, props changed)
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp   (contents, props changed)
Text files modified: 
   sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2 |     3 +++                                     
   1 files changed, 3 insertions(+), 0 deletions(-)
Modified: sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2	(original)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2	2010-06-15 11:36:07 EDT (Tue, 15 Jun 2010)
@@ -38,5 +38,8 @@
         [ run bft_testing/name_accessor_test.cpp ]
         [ run bft_testing/get_interface_test.cpp ]
         [ run bft_testing/twos_complement_testing.cpp ]
+        [ compile bft_testing/compile_pass/fusion_includes.cpp ]
+        [ run bft_testing/fusion_integraltion_testing.cpp ]
+
     ;
 
Added: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/compile_pass/fusion_includes.cpp
==============================================================================
Added: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp
==============================================================================
--- (empty file)
+++ sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fusion_integraltion_testing.cpp	2010-06-15 11:36:07 EDT (Tue, 15 Jun 2010)
@@ -0,0 +1,31 @@
+//  Copyright 2010 Brian Bartman.
+//  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)
+
+
+#include <boost/integer/bitfield_tuple.hpp>
+#include <boost/assert.hpp>
+
+
+using namespace boost;
+
+struct red;
+struct green;
+struct pink;
+struct blue;
+struct salmon;
+
+typedef bitfield_tuple<
+    member<char,red,4>,
+    member<unsigned char, green,5>,
+    storage<std::size_t>,
+    member<int, salmon, 16>
+>                                       test_tuple;
+
+
+int main() {
+
+}
+
+