[committed] libstdc++: Remove <sstream> dependency from std::bitset::to_ulong() test

Message ID 20220930205717.170362-1-jwakely@redhat.com
State New, archived
Headers
Series [committed] libstdc++: Remove <sstream> dependency from std::bitset::to_ulong() test |

Commit Message

Jonathan Wakely Sept. 30, 2022, 8:57 p.m. UTC
  Tested x86_64-linux. Pushed to trunk.

-- >8 --

There's no need to use a stringstream to test the to_ulong() member.
This will allow the test to be used in freestanding mode.

libstdc++-v3/ChangeLog:

	* testsuite/20_util/bitset/access/to_ulong.cc: Construct bitset
	from binary literal instead of using stringstream.
---
 .../testsuite/20_util/bitset/access/to_ulong.cc     | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)
  

Patch

diff --git a/libstdc++-v3/testsuite/20_util/bitset/access/to_ulong.cc b/libstdc++-v3/testsuite/20_util/bitset/access/to_ulong.cc
index 8163701e342..edc021c209c 100644
--- a/libstdc++-v3/testsuite/20_util/bitset/access/to_ulong.cc
+++ b/libstdc++-v3/testsuite/20_util/bitset/access/to_ulong.cc
@@ -20,22 +20,11 @@ 
 // 23.3.5.2 bitset members
 
 #include <bitset>
-#include <stdexcept>
-#include <sstream>
 #include <testsuite_hooks.h>
 
 void test03()
 {
-  std::bitset<5>      b;
-  std::stringstream   ss("101");
-  ss.exceptions(std::ios_base::eofbit);
-
-  try
-  {
-    ss >> b;
-  }
-  catch (std::exception&) { }
-
+  std::bitset<5>      b(0b101);
   VERIFY( b.to_ulong() == 5 );
 }