Removes uses of BOOST_CHECK_EQUAL from the hash tests as they don't work on Borland.

Also force a failure on the float tests on borland as they are crashing horribly. Hopefully I should be able to fix this and remove this.

Also use pair's constructor in hash_map_test.hpp instead of make_pair so that the correct type is created.


[SVN r28049]
This commit is contained in:
Daniel James
2005-04-07 20:53:20 +00:00
parent a65dc47fcb
commit 2d91127422
9 changed files with 56 additions and 50 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ BOOST_AUTO_UNIT_TEST(pointer_tests)
int int1;
int int2;
BOOST_CHECK_EQUAL(x1(0), x2(0));
BOOST_CHECK_EQUAL(x1(&int1), x2(&int1));
BOOST_CHECK_EQUAL(x1(&int2), x2(&int2));
BOOST_CHECK(x1(0) == x2(0));
BOOST_CHECK(x1(&int1) == x2(&int1));
BOOST_CHECK(x1(&int2) == x2(&int2));
}