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:
parent
9ffb659a29
commit
baf3d1dc0a
@ -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"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user