summaryrefslogtreecommitdiffstats
path: root/libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp')
-rw-r--r--libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp50
1 files changed, 0 insertions, 50 deletions
diff --git a/libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp b/libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp
deleted file mode 100644
index ebaa9e7a8d7..00000000000
--- a/libcxx/test/utilities/template.bitset/bitset.members/reset_one.pass.cpp
+++ /dev/null
@@ -1,50 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// The LLVM Compiler Infrastructure
-//
-// This file is dual licensed under the MIT and the University of Illinois Open
-// Source Licenses. See LICENSE.TXT for details.
-//
-//===----------------------------------------------------------------------===//
-
-// test bitset<N>& reset(size_t pos);
-
-#include <bitset>
-#include <cassert>
-
-#pragma clang diagnostic push
-#pragma clang diagnostic ignored "-Wtautological-compare"
-
-template <std::size_t N>
-void test_reset_one()
-{
- std::bitset<N> v;
- try
- {
- v.set();
- v.reset(50);
- if (50 >= v.size())
- assert(false);
- for (unsigned i = 0; i < v.size(); ++i)
- if (i == 50)
- assert(!v[i]);
- else
- assert(v[i]);
- }
- catch (std::out_of_range&)
- {
- }
-}
-
-int main()
-{
- test_reset_one<0>();
- test_reset_one<1>();
- test_reset_one<31>();
- test_reset_one<32>();
- test_reset_one<33>();
- test_reset_one<63>();
- test_reset_one<64>();
- test_reset_one<65>();
- test_reset_one<1000>();
-}
OpenPOWER on IntegriCloud