added test for a crash when passing wxCStrData constructed from a literal (operator?: operand) to a vararg template

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík 2007-04-24 14:09:51 +00:00
parent 9ffb659a29
commit baf3d1dc0a

View File

@ -75,4 +75,9 @@ void VarArgTestCase::StringPrintf()
CPPUNIT_ASSERT( s2 == "(FooBar)" );
s2.Printf(_T("value=%s;"), s.wc_str());
CPPUNIT_ASSERT( s2 == "value=FooBar;" );
// this tests correct passing of wxCStrData constructed from string
// literal:
bool cond = true;
s2.Printf(_T("foo %s"), !cond ? s.c_str() : _T("bar"));
}