Hi,

Op do 29 apr. 2021 om 16:42 schreef Nipun Garg <nipung271@gmail.com>:
+static void test_PdhOpenLogA( void )

You never call this test anywhere, so it doesn't get run.
 
+    ret = PdhOpenLogA( NULL, PDH_LOG_READ_ACCESS, PDH_LOG_TYPE_CSV, NULL, 0, NULL, NULL );
+    ok(ret == PDH_INVALID_HANDLE, "PdhOpenLogA failed 0x%08x\n", ret);

+    ret = PdhCloseLog( NULL, 0 );
+    ok(ret == PDH_INVALID_HANDLE, "PdhCloseLog failed 0x%08x\n", ret);

Wine doesn't have these functions yet, so you'll have to handle that.

Kind regards,
Gijs