From 1cbd1c2bf322ae4d78a7051ac69b0462278c8f42 Mon Sep 17 00:00:00 2001 From: Damjan Jovanovic Date: Thu, 21 Aug 2008 16:30:56 +0200 Subject: [PATCH] oleaut32: Add a failing VarFormat test. --- dlls/oleaut32/tests/varformat.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dlls/oleaut32/tests/varformat.c b/dlls/oleaut32/tests/varformat.c index 228ad1c6f65..2895408842a 100644 --- a/dlls/oleaut32/tests/varformat.c +++ b/dlls/oleaut32/tests/varformat.c @@ -368,6 +368,10 @@ static void test_VarFormat(void) VARFMT(VT_R8,V_R8,1.0001e-27,"##00.0000e-0",S_OK,"1000.1000e-30"); VARFMT(VT_R8,V_R8,47.11,".0000E+0",S_OK,".4711E+2"); VARFMT(VT_R8,V_R8,3.0401e-13,"#####.####e-0%",S_OK,"30401.e-15%"); + VARFMT(VT_R8,V_R8,1.57,"0.00",S_OK,"1.57"); + todo_wine { + VARFMT(VT_R8,V_R8,-1.57,"0.00",S_OK,"-1.57"); + } /* 'out' is not cleared */ -- 2.11.4.GIT