Commit ce39ae9f authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

wininet/tests: Use nameless structs and unions.

parent 903cf0ff
TESTDLL = wininet.dll
IMPORTS = wininet crypt32 ws2_32 user32 advapi32 shell32
EXTRADEFS = -DWINE_NO_NAMELESS_EXTENSION
C_SRCS = \
ftp.c \
......
......@@ -1176,8 +1176,8 @@ static void test_GetUrlCacheConfigInfo(void)
get_cache_path(td[i].flags, path, path_win8);
ok(info.dwStructSize == td[i].dwStructSize, "got %u\n", info.dwStructSize);
ok(!lstrcmpA(info.u.s.CachePath, path) || !lstrcmpA(info.u.s.CachePath, path_win8),
"%d: expected %s or %s, got %s\n", i, path, path_win8, info.u.s.CachePath);
ok(!lstrcmpA(info.CachePath, path) || !lstrcmpA(info.CachePath, path_win8),
"%d: expected %s or %s, got %s\n", i, path, path_win8, info.CachePath);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment