From fe78fbb8ec5e51fbbd762bc1e075e7de8894a6d5 Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Wed, 16 Sep 2009 13:30:41 -0500 Subject: [PATCH] oleaut32: Fail the typelib test when LoadTypeLib fails. --- dlls/oleaut32/tests/typelib.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dlls/oleaut32/tests/typelib.c b/dlls/oleaut32/tests/typelib.c index 9834d10..8b3bf15 100644 --- a/dlls/oleaut32/tests/typelib.c +++ b/dlls/oleaut32/tests/typelib.c @@ -720,6 +720,7 @@ static void test_inheritance(void) memcpy(path, tl_path, sizeof(tl_path)); hr = LoadTypeLib(path, &pTL); + ok(SUCCEEDED(hr), "LoadTypeLib(%s) returned 0x%08x\n", wine_dbgstr_w(path), hr); if(FAILED(hr)) return; -- 1.5.4.3