Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r64437 - in sandbox/SOC/2010/bit_masks/lib/integer/test: . bft_testing
From: bbartmanboost_at_[hidden]
Date: 2010-07-29 09:55:41


Author: bbartman
Date: 2010-07-29 09:55:40 EDT (Thu, 29 Jul 2010)
New Revision: 64437
URL: http://svn.boost.org/trac/boost/changeset/64437

Log:
moving tests into correct files then removing the extra files from the test suite
Removed:
   sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fails_on_64_bit.cpp
Text files modified:
   sandbox/SOC/2010/bit_masks/lib/integer/test/Jamfile.v2 | 2 +-
   1 files changed, 1 insertions(+), 1 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-07-29 09:55:40 EDT (Thu, 29 Jul 2010)
@@ -54,7 +54,7 @@
         [ run bft_testing/custom_member_test.cpp ]
         [ run bft_testing/pointer_member_test.cpp ]
         [ run bft_testing/pointer_parsing_meta_function_test.cpp ]
- [ run bft_testing/fails_on_64_bit.cpp ]
+
 
         [ run bft_testing/variadic_sequence_20_test.cpp ]
         [ run bft_testing/variadic_sequence_30_test.cpp ]

Deleted: sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fails_on_64_bit.cpp
==============================================================================
--- sandbox/SOC/2010/bit_masks/lib/integer/test/bft_testing/fails_on_64_bit.cpp 2010-07-29 09:55:40 EDT (Thu, 29 Jul 2010)
+++ (empty file)
@@ -1,43 +0,0 @@
-// 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/endian.hpp>
-#include <boost/integer/endian_binary_stream.hpp>
-#include <boost/binary_stream.hpp>
-
-#include <boost/integer/bitfield_tuple.hpp>
-#include <boost/detail/lightweight_test.hpp>
-
-
-
-
-
-struct red;
-struct green;
-struct blue;
-
-using namespace boost;
-using namespace boost::integer;
-using namespace boost::bitfields;
-
-typedef bitfield_tuple<
- storage< big32_t >,
- member<unsigned char, red, 5>,
- member<unsigned char, green, 6>,
- member<unsigned char, blue, 5>
-> rgb565_t;
-
-
-
-int main() {
- {
- rgb565_t rgb565;
- rgb565.get<red>() = 3;
- BOOST_TEST(rgb565.get<red>() == 3);
- rgb565.get<0>() = 4;
- BOOST_TEST(rgb565.get<0>() == 4);
- }
- return boost::report_errors();
-}


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk