1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // test bitset<N>& flip(size_t pos); 11 12 #include <bitset> 13 #include <cstdlib> 14 #include <cassert> 15 16 #include "test_macros.h" 17 18 template <std::size_t N> 19 std::bitset<N> make_bitset()20make_bitset() 21 { 22 std::bitset<N> v; 23 for (std::size_t i = 0; i < N; ++i) 24 v[i] = static_cast<bool>(std::rand() & 1); 25 return v; 26 } 27 28 template <std::size_t N> test_flip_one(bool test_throws)29void test_flip_one(bool test_throws) 30 { 31 std::bitset<N> v = make_bitset<N>(); 32 #ifdef TEST_HAS_NO_EXCEPTIONS 33 if (test_throws) return; 34 #else 35 try 36 { 37 #endif 38 v.flip(50); 39 bool b = v[50]; 40 if (50 >= v.size()) 41 assert(false); 42 assert(v[50] == b); 43 v.flip(50); 44 assert(v[50] != b); 45 v.flip(50); 46 assert(v[50] == b); 47 assert(!test_throws); 48 #ifndef TEST_HAS_NO_EXCEPTIONS 49 } 50 catch (std::out_of_range&) 51 { 52 assert(test_throws); 53 } 54 #endif 55 } 56 main()57int main() 58 { 59 test_flip_one<0>(true); 60 test_flip_one<1>(true); 61 test_flip_one<31>(true); 62 test_flip_one<32>(true); 63 test_flip_one<33>(true); 64 test_flip_one<63>(false); 65 test_flip_one<64>(false); 66 test_flip_one<65>(false); 67 test_flip_one<1000>(false); 68 } 69