]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libstdc++-v3/testsuite/23_containers/bitset/operations/1.cc
Reshuffle 23_containers testsuite.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 23_containers / bitset / operations / 1.cc
similarity index 95%
rename from libstdc++-v3/testsuite/23_containers/bitset_shift.cc
rename to libstdc++-v3/testsuite/23_containers/bitset/operations/1.cc
index c022ca6ff4a35954746c11bc88b7638f5348e2de..8d21a9f5521f8c6904e01bec3616e897c4ef9375 100644 (file)
@@ -21,7 +21,6 @@
 #include <string>
 #include <set>
 #include <bitset>
-
 #include <testsuite_hooks.h>
 
 static char original_bits[1024];
@@ -102,21 +101,9 @@ test01() {
   return test;
 }
 
-bool
-test02()
-{
-  bool test = true;
-
-  std::bitset<66>  b;
-  b <<= 400;
-  VERIFY( b.count() == 0 );
-  return test;
-}
-
 int
-main() {
+main() 
+{
   test01();
-  test02();
-
   return 0;
 }