Francois Gouget : msvcrt/tests: Add a trailing '\n' to an ok() call.

Alexandre Julliard julliard at winehq.org
Mon Mar 7 12:22:44 CST 2011


Module: wine
Branch: master
Commit: bf75229a0402b8eca8e2f41ded1e69830b587eef
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=bf75229a0402b8eca8e2f41ded1e69830b587eef

Author: Francois Gouget <fgouget at free.fr>
Date:   Sat Mar  5 11:51:15 2011 +0100

msvcrt/tests: Add a trailing '\n' to an ok() call.

---

 dlls/msvcrt/tests/printf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/tests/printf.c b/dlls/msvcrt/tests/printf.c
index f05d124..ddf4801 100644
--- a/dlls/msvcrt/tests/printf.c
+++ b/dlls/msvcrt/tests/printf.c
@@ -859,7 +859,7 @@ static void test_xcvt(void)
         for( i = 0; strcmp( test_cvt_testcases[i].expstr_e, "END"); i++){
             decpt = sign = 100;
             err = p__fcvt_s(str, 1024, test_cvt_testcases[i].value, test_cvt_testcases[i].nrdigits, &decpt, &sign);
-            ok(err == 0, "_fcvt_s() failed with error code %d", err);
+            ok(err == 0, "_fcvt_s() failed with error code %d\n", err);
             ok( 0 == strncmp( str, test_cvt_testcases[i].expstr_f, 15),
                    "_fcvt_s() bad return, got '%s' expected '%s'. test %d\n", str,
                   test_cvt_testcases[i].expstr_f, i);




More information about the wine-cvs mailing list