git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14472
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#ifdef TEST_INTERACTIVE
#undef TEST_INTERACTIVE
#ifdef TEST_INTERACTIVE
#undef TEST_INTERACTIVE
- static const bool TEST_INTERACTIVE = FALSE;
+ static const bool TEST_INTERACTIVE = TRUE;
#else
static const bool TEST_INTERACTIVE = FALSE;
#endif
#else
static const bool TEST_INTERACTIVE = FALSE;
#endif
// multiplication will not overflow)
wxLongLong ll = MAKE_LL((rand() >> 12), rand(), rand(), rand());
// multiplication will not overflow)
wxLongLong ll = MAKE_LL((rand() >> 12), rand(), rand(), rand());
- // get a random long (not wxLongLong for now) to divide it with
- long l = rand();
+ // get a random (but non null) long (not wxLongLong for now) to divide
+ // it with
+ long l;
+ do
+ {
+ l = rand();
+ }
+ while ( !l );
+
{
TestOsInfo();
TestUserInfo();
{
TestOsInfo();
TestUserInfo();
+
+ if ( TEST_INTERACTIVE )
+ TestDiskInfo();
}
#endif // TEST_INFO_FUNCTIONS
}
#endif // TEST_INFO_FUNCTIONS