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/07/12 22:33:50 UTC

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

Author: sebor
Date: Thu Jul 12 13:33:49 2007
New Revision: 555749

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

	* 0.printf.cpp (test_errno): Exercised %{m} and %{*m} with errno of 0.

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=555749&r1=555748&r2=555749
==============================================================================
--- incubator/stdcxx/trunk/tests/self/0.printf.cpp (original)
+++ incubator/stdcxx/trunk/tests/self/0.printf.cpp Thu Jul 12 13:33:49 2007
@@ -2257,6 +2257,12 @@
 
     int count = 0;
 
+    errno = 0;
+    TEST ("%{#m}", 0, 0, 0, "E#0");
+
+    errno = 0;
+    TEST ("%{#*m}", 0, 0, 0, "E#0");
+
 #ifdef EDOM
 
     ++count;