Disable unreliable test
g0dil [Fri, 13 Oct 2006 14:12:28 +0000 (14:12 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@139 270642c3-0616-0410-b53a-bc976706d245

Utils/TypeInfo.test.cc

index 74218af..699fd12 100644 (file)
@@ -51,10 +51,11 @@ BOOST_AUTO_UNIT_TEST(prettyName)
 {
     typedef test::Foo< test::Foo<test::Blub, 1>, 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<test::Foo<test::Blub, 1>, 10>" );
+    // The exact representation is compiler version dependent ... 
+    // BOOST_CHECK_EQUAL( satcom::lib::prettyName(typeid(baseOb)), "test::Foo<test::Foo<test::Blub, 1>, 10>" );
 }
 
 ///////////////////////////////cc.e////////////////////////////////////////