From 559cdbfc7c8b1a88771d7e2149446086b5c60e1f Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Mon, 9 Jan 2012 09:57:30 +0100 Subject: [PATCH] oleaut32/tests: Use win_skip() when detecting an API is missing. --- dlls/oleaut32/tests/varformat.c | 2 +- dlls/oleaut32/tests/vartest.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/tests/varformat.c b/dlls/oleaut32/tests/varformat.c index d520137a127..398bcf58db1 100644 --- a/dlls/oleaut32/tests/varformat.c +++ b/dlls/oleaut32/tests/varformat.c @@ -51,7 +51,7 @@ static HRESULT (WINAPI *pVarWeekdayName)(int,int,int,ULONG,BSTR*); /* Get a conversion function ptr, return if function not available */ #define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \ - if (!p##func) { trace("function " # func " not available, not testing it\n"); return; } + if (!p##func) { win_skip("function " # func " not available, not testing it\n"); return; } static inline int strcmpW( const WCHAR *str1, const WCHAR *str2 ) { diff --git a/dlls/oleaut32/tests/vartest.c b/dlls/oleaut32/tests/vartest.c index 7a6394aef99..393caf57b1b 100644 --- a/dlls/oleaut32/tests/vartest.c +++ b/dlls/oleaut32/tests/vartest.c @@ -55,7 +55,7 @@ static WCHAR sz12_true[32]; /* Get a conversion function ptr, return if function not available */ #define CHECKPTR(func) p##func = (void*)GetProcAddress(hOleaut32, #func); \ - if (!p##func) { trace("function " # func " not available, not testing it\n"); return; } + if (!p##func) { win_skip("function " # func " not available, not testing it\n"); return; } /* Have IRecordInfo data type? */ static int HAVE_OLEAUT32_RECORD = 0;