Module: wine Branch: master Commit: da519c603bb01bad24b8084dd0698721a7f5ed35 URL: http://source.winehq.org/git/wine.git/?a=commit;h=da519c603bb01bad24b8084dd0...
Author: André Hentschel nerv@dawncrow.de Date: Wed Feb 24 19:09:22 2010 +0100
oleaut32/tests: Add some tests.
---
dlls/oleaut32/tests/varformat.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/oleaut32/tests/varformat.c b/dlls/oleaut32/tests/varformat.c index d0975ed..1c476a0 100644 --- a/dlls/oleaut32/tests/varformat.c +++ b/dlls/oleaut32/tests/varformat.c @@ -389,6 +389,8 @@ static void test_VarFormat(void) VARFMT(VT_R8,V_R8,0.0995,"#.##",S_OK,".1"); VARFMT(VT_R8,V_R8,8.0995,"#.##",S_OK,"8.1"); VARFMT(VT_R8,V_R8,0.0994,"#.##",S_OK,".1"); + VARFMT(VT_R8,V_R8,1.00,"#,##0.00",S_OK,"1.00"); + todo_wine VARFMT(VT_R8,V_R8,0.0995,"#.###",S_OK,".1");
/* 'out' is not cleared */