You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by se...@apache.org on 2007/06/03 18:15:45 UTC

svn commit: r543929 - /incubator/stdcxx/trunk/tests/self/0.printf.cpp

Author: sebor
Date: Sun Jun  3 09:15:44 2007
New Revision: 543929

URL: http://svn.apache.org/viewvc?view=rev&rev=543929
Log:
2007-06-03  Martin Sebor  <se...@roguewave.com>

	STDCXX-135
	* 0.printf.cpp (test_string): Added a test for the format being
	the empty string ("").

Modified:
    incubator/stdcxx/trunk/tests/self/0.printf.cpp

Modified: incubator/stdcxx/trunk/tests/self/0.printf.cpp
URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/tests/self/0.printf.cpp?view=diff&rev=543929&r1=543928&r2=543929
==============================================================================
--- incubator/stdcxx/trunk/tests/self/0.printf.cpp (original)
+++ incubator/stdcxx/trunk/tests/self/0.printf.cpp Sun Jun  3 09:15:44 2007
@@ -361,6 +361,7 @@
     //////////////////////////////////////////////////////////////////
     printf ("%s\n", "\"%s\": character string");
 
+    TEST ("",   "",        0, 0, "");
     TEST ("%s", "",        0, 0, "");
     TEST ("%s", "a",       0, 0, "a");
     TEST ("%s", "ab",      0, 0, "ab");