forked from boostorg/container_hash
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:
@@ -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));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user