Cannot use always succeeding ok statement, because check_PropVariantToBSTR2 is used inside a todo_wine block.
Followup to a1637b167f.
This was intended to make sure check_PropVariantToBSTR2 is just called with `VT_R4`, but makes now more problems than good.
From: Bernhard Übelacker bernhardu@mailbox.org
Cannot use always succeeding ok statement, because check_PropVariantToBSTR2 is used inside a todo_wine block.
Followup to a1637b167f. --- dlls/propsys/tests/propsys.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/dlls/propsys/tests/propsys.c b/dlls/propsys/tests/propsys.c index 018b3de003f..441bb68de52 100644 --- a/dlls/propsys/tests/propsys.c +++ b/dlls/propsys/tests/propsys.c @@ -1756,9 +1756,6 @@ do \ HRESULT check_hr_, check_hr2_; \ BSTR check_bstr_, check_bstr2_; \ \ - ok_(__FILE__, __LINE__)((type) == VT_R4, \ - "check_PropVariantToBSTR2 handles just VT_R4.\n"); \ - \ check_hr_ = PropVariantToBSTR(&check_propvar_, &check_bstr_); \ ok_(__FILE__, __LINE__)(check_hr_ == S_OK, \ "PropVariantToBSTR returned %#lx.\n", check_hr_); \