Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r79603 - branches/release/libs/algorithm/test
From: marshall_at_[hidden]
Date: 2012-07-19 11:00:27


Author: marshall
Date: 2012-07-19 11:00:27 EDT (Thu, 19 Jul 2012)
New Revision: 79603
URL: http://svn.boost.org/trac/boost/changeset/79603

Log:
Get rid of tabs in Boost.Algorithm tests
Properties modified:
   branches/release/libs/algorithm/test/hex_test4.cpp (contents, props changed)
Text files modified:
   branches/release/libs/algorithm/test/hex_test4.cpp | 208 ++++++++++++++++++++--------------------
   1 files changed, 104 insertions(+), 104 deletions(-)

Modified: branches/release/libs/algorithm/test/hex_test4.cpp
==============================================================================
--- branches/release/libs/algorithm/test/hex_test4.cpp (original)
+++ branches/release/libs/algorithm/test/hex_test4.cpp 2012-07-19 11:00:27 EDT (Thu, 19 Jul 2012)
@@ -19,127 +19,127 @@
 namespace ba = boost::algorithm;
 
 void test_short_input1 () {
- std::string s;
-
- try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
- catch ( const std::exception &ex ) { return; }
- BOOST_TEST_MESSAGE ( "Failed to catch std::exception in test_short_input1" );
- BOOST_CHECK ( false );
- }
+ std::string s;
+
+ try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
+ catch ( const std::exception &ex ) { return; }
+ BOOST_TEST_MESSAGE ( "Failed to catch std::exception in test_short_input1" );
+ BOOST_CHECK ( false );
+ }
 
 void test_short_input2 () {
- std::string s;
-
- try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
- catch ( const ba::hex_decode_error &ex ) { return; }
- BOOST_TEST_MESSAGE ( "Failed to catch ba::hex_decode_error in test_short_input2" );
- BOOST_CHECK ( false );
- }
-
+ std::string s;
+
+ try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
+ catch ( const ba::hex_decode_error &ex ) { return; }
+ BOOST_TEST_MESSAGE ( "Failed to catch ba::hex_decode_error in test_short_input2" );
+ BOOST_CHECK ( false );
+ }
+
 void test_short_input3 () {
- std::string s;
-
- try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
- catch ( const ba::not_enough_input &ex ) { return; }
- BOOST_TEST_MESSAGE ( "Failed to catch ba::not_enough_input in test_short_input3" );
- BOOST_CHECK ( false );
- }
-
-// Make sure that the right thing is thrown
+ std::string s;
+
+ try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
+ catch ( const ba::not_enough_input &ex ) { return; }
+ BOOST_TEST_MESSAGE ( "Failed to catch ba::not_enough_input in test_short_input3" );
+ BOOST_CHECK ( false );
+ }
+
+// Make sure that the right thing is thrown
 void test_short_input4 () {
- std::string s;
-
- try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
- catch ( const ba::non_hex_input &ex ) { BOOST_CHECK ( false ); }
- catch ( const ba::not_enough_input &ex ) { return; }
- catch ( ... ) { BOOST_CHECK ( false ); }
- BOOST_CHECK ( false );
- }
+ std::string s;
+
+ try { ba::unhex ( std::string ( "A" ), std::back_inserter(s)); }
+ catch ( const ba::non_hex_input &ex ) { BOOST_CHECK ( false ); }
+ catch ( const ba::not_enough_input &ex ) { return; }
+ catch ( ... ) { BOOST_CHECK ( false ); }
+ BOOST_CHECK ( false );
+ }
+
+// Make sure that the right thing is thrown
+void test_short_input5 () {
+ std::string s;
+
+ try { ba::unhex ( "A", std::back_inserter(s)); }
+ catch ( const ba::non_hex_input &ex ) { BOOST_CHECK ( false ); }
+ catch ( const ba::not_enough_input &ex ) { return; }
+ catch ( ... ) { BOOST_CHECK ( false ); }
+ BOOST_CHECK ( false );
+ }
+
 
 void test_short_input () {
-// BOOST_TEST_MESSAGE ( "Short input tests for boost::algorithm::unhex" );
- test_short_input1 ();
- test_short_input2 ();
- test_short_input3 ();
- test_short_input4 ();
- }
+// BOOST_TEST_MESSAGE ( "Short input tests for boost::algorithm::unhex" );
+ test_short_input1 ();
+ test_short_input2 ();
+ test_short_input3 ();
+ test_short_input4 ();
+ test_short_input5 ();
+ }
 
 
 void test_nonhex_input1 () {
- std::string s;
-
- try { ba::unhex ( "01234FG1234", std::back_inserter(s)); }
- catch ( const std::exception &ex ) {
- BOOST_CHECK ( 'G' == *boost::get_error_info<ba::bad_char>(ex));
- return;
- }
- BOOST_TEST_MESSAGE ( "Failed to catch std::exception in test_nonhex_input1" );
- BOOST_CHECK ( false );
- }
+ std::string s;
+
+ try { ba::unhex ( "01234FG1234", std::back_inserter(s)); }
+ catch ( const std::exception &ex ) {
+ BOOST_CHECK ( 'G' == *boost::get_error_info<ba::bad_char>(ex));
+ return;
+ }
+ catch ( ... ) {}
+ BOOST_TEST_MESSAGE ( "Failed to catch std::exception in test_nonhex_input1" );
+ BOOST_CHECK ( false );
+ }
 
 void test_nonhex_input2 () {
- std::string s;
-
- try { ba::unhex ( "012Z4FA1234", std::back_inserter(s)); }
- catch ( const ba::hex_decode_error &ex ) {
- BOOST_CHECK ( 'Z' == *boost::get_error_info<ba::bad_char>(ex));
- return;
- }
- BOOST_TEST_MESSAGE ( "Failed to catch ba::hex_decode_error in test_nonhex_input2" );
- BOOST_CHECK ( false );
- }
-
+ std::string s;
+
+ try { ba::unhex ( "012Z4FA1234", std::back_inserter(s)); }
+ catch ( const ba::hex_decode_error &ex ) {
+ BOOST_CHECK ( 'Z' == *boost::get_error_info<ba::bad_char>(ex));
+ return;
+ }
+ catch ( ... ) {}
+ BOOST_TEST_MESSAGE ( "Failed to catch ba::hex_decode_error in test_nonhex_input2" );
+ BOOST_CHECK ( false );
+ }
+
 void test_nonhex_input3 () {
- std::string s;
-
- try { ba::unhex ( "01234FA12Q4", std::back_inserter(s)); }
- catch ( const ba::non_hex_input &ex ) {
- BOOST_CHECK ( 'Q' == *boost::get_error_info<ba::bad_char>(ex));
- return;
- }
- BOOST_TEST_MESSAGE ( "Failed to catch ba::non_hex_input in test_nonhex_input3" );
- BOOST_CHECK ( false );
- }
-
-// Make sure that the right thing is thrown
+ std::string s;
+
+ try { ba::unhex ( "01234FA12Q4", std::back_inserter(s)); }
+ catch ( const ba::non_hex_input &ex ) {
+ BOOST_CHECK ( 'Q' == *boost::get_error_info<ba::bad_char>(ex));
+ return;
+ }
+ catch ( ... ) {}
+ BOOST_TEST_MESSAGE ( "Failed to catch ba::non_hex_input in test_nonhex_input3" );
+ BOOST_CHECK ( false );
+ }
+
+// Make sure that the right thing is thrown
 void test_nonhex_input4 () {
- std::string s;
-
- try { ba::unhex ( "P1234FA1234", std::back_inserter(s)); }
- catch ( const ba::not_enough_input &ex ) { BOOST_CHECK ( false ); }
- catch ( const ba::non_hex_input &ex ) { return; }
- catch ( ... ) { BOOST_CHECK ( false ); }
- BOOST_CHECK ( false );
- }
-
-// Make sure that the right thing is thrown
-void test_nonhex_input5 () {
- std::string s;
-
- try { ba::unhex ( "012", std::back_inserter(s)); }
- catch ( const ba::non_hex_input &ex ) {
- BOOST_CHECK ( '\000' == *boost::get_error_info<ba::bad_char>(ex));
- return;
- }
- BOOST_TEST_MESSAGE ( "Failed to catch ba::non_hex_input in test_nonhex_input4" );
- BOOST_CHECK ( false );
- }
+ std::string s;
+
+ try { ba::unhex ( "P1234FA1234", std::back_inserter(s)); }
+ catch ( const ba::not_enough_input &ex ) { BOOST_CHECK ( false ); }
+ catch ( const ba::non_hex_input &ex ) { return; }
+ catch ( ... ) { BOOST_CHECK ( false ); }
+ BOOST_CHECK ( false );
+ }
 
 void test_nonhex_input () {
-// BOOST_TEST_MESSAGE ( "Non hex input tests for for boost::algorithm::unhex" );
- test_nonhex_input1 ();
- test_nonhex_input2 ();
- test_nonhex_input3 ();
- test_nonhex_input4 ();
- test_nonhex_input5 ();
- }
-
-
+// BOOST_TEST_MESSAGE ( "Non hex input tests for for boost::algorithm::unhex" );
+ test_nonhex_input1 ();
+ test_nonhex_input2 ();
+ test_nonhex_input3 ();
+ test_nonhex_input4 ();
+ }
 
 int test_main( int , char* [] )
 {
- test_short_input ();
- test_nonhex_input ();
-
+ test_short_input ();
+ test_nonhex_input ();
+
   return 0;
 }


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk