disable %p tests due to different snprintf implementations

git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@374 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
syntheticpp 2005-11-29 13:46:20 +00:00
parent fa05da94c0
commit 7eb9f2e6ae

View file

@ -155,8 +155,12 @@ int main(int argc, char** argv)
formatSpec += '.';
formatSpec += buf;
}
// Generate a random type character
static const string type("cdeEfgGinopsuxX");
/* disable %p tests
static const string type("cdeEfgGinopsuxX");*/
static const string type("cdeEfgGinosuxX");
const char typeSpec = type[RandomInt(0, type.size() - 1)];
// Generate an optional type prefix
static const string prefix("hl");