diff --git a/tests/strings/strings.cpp b/tests/strings/strings.cpp index 69a77329ea..4430a85f13 100644 --- a/tests/strings/strings.cpp +++ b/tests/strings/strings.cpp @@ -668,6 +668,10 @@ TEST_CASE("StringToLong", "[wxString]") if ( ld.flags & (Number_LongLong | Number_Unsigned) ) continue; + INFO("Checking test case #" << (n + 1) << ": " + "\"" << wxString{ld.str} << "\" " + "(flags=" << ld.flags << ", base=" << ld.base << ")"); + // NOTE: unless you're using some exotic locale, ToCLong and ToLong // should behave the same for our test data set: @@ -702,6 +706,10 @@ TEST_CASE("StringToULong", "[wxString]") if ( ld.flags & (Number_LongLong | Number_Signed) ) continue; + INFO("Checking test case #" << (n + 1) << ": " + "\"" << wxString{ld.str} << "\" " + "(flags=" << ld.flags << ", base=" << ld.base << ")"); + // NOTE: unless you're using some exotic locale, ToCLong and ToLong // should behave the same for our test data set: