os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/test_bitset.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/genericopenlibs/cppstdlib/stl/test/eh/test_bitset.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,39 @@
     1.4 +/***********************************************************************************
     1.5 +  test_bitset.cpp
     1.6 +
     1.7 + * Copyright (c) 1997
     1.8 + * Mark of the Unicorn, Inc.
     1.9 + *
    1.10 + * Permission to use, copy, modify, distribute and sell this software
    1.11 + * and its documentation for any purpose is hereby granted without fee,
    1.12 + * provided that the above copyright notice appear in all copies and
    1.13 + * that both that copyright notice and this permission notice appear
    1.14 + * in supporting documentation.  Mark of the Unicorn makes no
    1.15 + * representations about the suitability of this software for any
    1.16 + * purpose.  It is provided "as is" without express or implied warranty.
    1.17 +
    1.18 +***********************************************************************************/
    1.19 +#include "Prefix.h"
    1.20 +#if defined( EH_BITSET_IMPLEMENTED )
    1.21 +#include "Tests.h"
    1.22 +#include <bitset>
    1.23 +#include "TestClass.h"
    1.24 +#include "LeakCheck.h"
    1.25 +#include "test_construct.h"
    1.26 +#include "test_assign_op.h"
    1.27 +#include "test_push_back.h"
    1.28 +#include "test_insert.h"
    1.29 +#include "test_push_front.h"
    1.30 +
    1.31 +typedef bitset<100> TestBitset;
    1.32 +
    1.33 +inline sequence_container_tag
    1.34 +container_category(const TestBitset&)
    1.35 +{
    1.36 +  return sequence_container_tag();
    1.37 +}
    1.38 +
    1.39 +void test_bitset()
    1.40 +{
    1.41 +}
    1.42 +#endif // EH_BITSET_IMPLEMENTED