Peter Kümmel wrote: > the fail of kconfigtest is worse than a bug: the compiler crashes when > compiling > > KConfig sc( "kconfigtest" ); > sc.writeEntry( "flags-bit0-bit1", > KConfigTest::Flags(KConfigTest::bit0|KConfigTest::bit1)); > > so I have replaced the code with a int version which breaks the test for > QString KConfig::readEntry > > I think it's better to disable the test and to make a additional output when > using msvc.
The compiler problem is solved: #ifndef Q_CC_MSVC sc.writeEntry( "enum-100", KConfigTest::Hundreds ); #else sc.writeEntry( "enum-100", KConfigTest::Hundreds, KConfigBase::Normal ); #endif but the test still fails :( _______________________________________________ Kde-buildsystem mailing list [email protected] https://mail.kde.org/mailman/listinfo/kde-buildsystem
