mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 10:56:05 +00:00
[WLANAPI_APITEST] Bring these tests back home.
svn path=/trunk/; revision=73242
This commit is contained in:
parent
9cbc4837b7
commit
bdf445d754
6 changed files with 14 additions and 23 deletions
|
@ -37,4 +37,5 @@ add_subdirectory(winhttp)
|
|||
add_subdirectory(wininet)
|
||||
add_subdirectory(winprint)
|
||||
add_subdirectory(winspool)
|
||||
add_subdirectory(wlanapi)
|
||||
add_subdirectory(ws2_32)
|
||||
|
|
5
rostests/apitests/wlanapi/CMakeLists.txt
Normal file
5
rostests/apitests/wlanapi/CMakeLists.txt
Normal 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)
|
|
@ -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);
|
||||
|
|
@ -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)
|
|
@ -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)
|
||||
|
|
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue