Update of /cvsroot/boost/boost/libs/functional/hash/test
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv9693

Modified Files:
      Tag: RC_1_34_0
        link_ext_test.cpp 
Log Message:
Reverting the last change as it's not a main function so returning
'boost::report_errors' would be wrong. The main function is in
link_no_ext_test.cpp and does return 'boost::report_errors'.


Index: link_ext_test.cpp
===================================================================
RCS file: /cvsroot/boost/boost/libs/functional/hash/test/link_ext_test.cpp,v
retrieving revision 1.3.2.1
retrieving revision 1.3.2.2
diff -u -d -r1.3.2.1 -r1.3.2.2
--- link_ext_test.cpp   25 Feb 2007 15:28:02 -0000      1.3.2.1
+++ link_ext_test.cpp   25 Feb 2007 15:59:08 -0000      1.3.2.2
@@ -17,7 +17,6 @@
     std::vector<std::size_t> x;
     x.push_back(*x1);
     HASH_NAMESPACE::hash<std::vector<std::size_t> > vector_hasher;
-    BOOST_TEST(vector_hasher(x) == HASH_NAMESPACE::hash_value(x));
-    return boost::report_errors();
+    return vector_hasher(x) != HASH_NAMESPACE::hash_value(x);
 }
 


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to