From: g0dil Date: Fri, 13 Oct 2006 14:12:28 +0000 (+0000) Subject: Disable unreliable test X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=1806298d27b59847c61931d2bd44932589a782ab;p=senf.git Disable unreliable test git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@139 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Utils/TypeInfo.test.cc b/Utils/TypeInfo.test.cc index 74218af..699fd12 100644 --- a/Utils/TypeInfo.test.cc +++ b/Utils/TypeInfo.test.cc @@ -51,10 +51,11 @@ BOOST_AUTO_UNIT_TEST(prettyName) { typedef test::Foo< test::Foo, 10> TestType; TestType ob; - test::Base const & baseOb(ob); + // test::Base const & baseOb(ob); BOOST_CHECK_EQUAL( satcom::lib::prettyName(typeid(int)), "int"); - BOOST_CHECK_EQUAL( satcom::lib::prettyName(typeid(baseOb)), "test::Foo, 10>" ); + // The exact representation is compiler version dependent ... + // BOOST_CHECK_EQUAL( satcom::lib::prettyName(typeid(baseOb)), "test::Foo, 10>" ); } ///////////////////////////////cc.e////////////////////////////////////////