2008/4/5 Vitaly Perov vitperov@etersoft.ru:
This test checks if function FDICopy() of cabinet.dll correctly works with an empty cabinet file (It's correct cab-file, but it has no files and folders inside). In this case Windows return TRUE, but WINE return FALSE. So the installation of certain software finishes with an error in WINE
Changelog: - Added a test for cabinet.dll FDICopy function. This test checks if it works correctly with an empty cab-files
--- dlls/cabinet/tests/fdi.c 6 Feb 2008 13:29:17 -0000 1.3 +++ dlls/cabinet/tests/fdi.c 5 Apr 2008 15:16:55 -0000 @@ -20,6 +20,7 @@
#include <stdio.h> #include <windows.h> +#include <assert.h> #include "fci.h" #include "fdi.h" #include "wine/test.h"
You forgot to remove this.