[WLANAPI_APITEST] Bring these tests back home.

svn path=/trunk/; revision=73242
This commit is contained in:
Amine Khaldi 2016-11-17 13:46:36 +00:00
parent 9cbc4837b7
commit bdf445d754
6 changed files with 14 additions and 23 deletions

View file

@ -37,4 +37,5 @@ add_subdirectory(winhttp)
add_subdirectory(wininet)
add_subdirectory(winprint)
add_subdirectory(winspool)
add_subdirectory(wlanapi)
add_subdirectory(ws2_32)

View file

@ -0,0 +1,5 @@
add_executable(wlanapi_apitest wlanapi.c testlist.c)
set_module_type(wlanapi_apitest win32cui)
add_importlibs(wlanapi_apitest wlanapi msvcrt kernel32)
add_cd_file(TARGET wlanapi_apitest DESTINATION reactos/bin FOR all)

View file

@ -1,10 +1,7 @@
/* Automatically generated file; DO NOT EDIT!! */
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#define __ROS_LONG64__
#define STANDALONE
#include "wine/test.h"
#include <apitest.h>
extern void func_wlanapi(void);

View file

@ -18,15 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <apitest.h>
#include "windef.h"
#include "winbase.h"
#include "wlanapi.h"
#include "wine/test.h"
#include <wlanapi.h>
static const GUID InterfaceGuid = {0x439b20af, 0x8955, 0x405b, {0x99, 0xf0, 0xa6, 0x2a, 0xf0, 0xc6, 0x8d, 0x43}};
@ -43,20 +37,20 @@ static void WlanOpenHandle_test(void)
skip("Skipping wlanapi tests, WlanSvc is not running\n");
return;
}
ok(ret == ERROR_SUCCESS, "WlanOpenHandle failed, error %d\n", ret);
ok(ret == ERROR_SUCCESS, "WlanOpenHandle failed, error %ld\n", ret);
WlanCloseHandle(hClientHandle, NULL);
/* invalid pdwNegotiatedVersion */
ret = WlanOpenHandle(1, NULL, NULL, &hClientHandle);
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %ld\n", GetLastError());
/* invalid hClientHandle */
ret = WlanOpenHandle(1, NULL, &dwNegotiatedVersion, NULL);
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %ld\n", GetLastError());
/* invalid pReserved */
ret = WlanOpenHandle(1, (PVOID) 1, &dwNegotiatedVersion, &hClientHandle);
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
ok(ret == ERROR_INVALID_PARAMETER, "expected ERROR_INVALID_PARAMETER, got %ld\n", GetLastError());
}
static void WlanCloseHandle_test(void)

View file

@ -114,7 +114,6 @@ add_subdirectory(wininet)
add_subdirectory(winmm)
#add_subdirectory(winspool)
add_subdirectory(wintrust)
add_subdirectory(wlanapi)
add_subdirectory(wldap32)
add_subdirectory(wmiutils)
add_subdirectory(ws2_32)

View file

@ -1,5 +0,0 @@
add_executable(wlanapi_winetest wlanapi.c testlist.c)
set_module_type(wlanapi_winetest win32cui)
add_importlibs(wlanapi_winetest wlanapi msvcrt kernel32)
add_cd_file(TARGET wlanapi_winetest DESTINATION reactos/bin FOR all)