mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
Merge PR #739: vpntest improvement: add Server Manager UI and Client Manager UI test
This commit is contained in:
commit
0e22adc598
@ -14,7 +14,23 @@
|
|||||||
#include <Cedar/Cedar.h>
|
#include <Cedar/Cedar.h>
|
||||||
#include "vpntest.h"
|
#include "vpntest.h"
|
||||||
|
|
||||||
|
void server_manager_test(UINT num, char **arg)
|
||||||
|
{
|
||||||
|
#ifdef OS_WIN32
|
||||||
|
SMExec();
|
||||||
|
#else // OS_WIN32
|
||||||
|
Print("This command is supported only on Win32.");
|
||||||
|
#endif // OS_WIN32
|
||||||
|
}
|
||||||
|
|
||||||
|
void client_manager_test(UINT num, char **arg)
|
||||||
|
{
|
||||||
|
#ifdef OS_WIN32
|
||||||
|
CMExec();
|
||||||
|
#else // OS_WIN32
|
||||||
|
Print("This command is supported only on Win32.");
|
||||||
|
#endif // OS_WIN32
|
||||||
|
}
|
||||||
|
|
||||||
void client_test(UINT num, char **arg)
|
void client_test(UINT num, char **arg)
|
||||||
{
|
{
|
||||||
@ -79,6 +95,8 @@ TEST_LIST test_list[] =
|
|||||||
{"c", client_test, "VPN Client in Test Mode, enter key to graceful stop."},
|
{"c", client_test, "VPN Client in Test Mode, enter key to graceful stop."},
|
||||||
{"s", server_test, "VPN Server in Test Mode, enter key to graceful stop."},
|
{"s", server_test, "VPN Server in Test Mode, enter key to graceful stop."},
|
||||||
{"b", bridge_test, "VPN Bridge in Test Mode, enter key to graceful stop."},
|
{"b", bridge_test, "VPN Bridge in Test Mode, enter key to graceful stop."},
|
||||||
|
{"sm", server_manager_test, "VPN Server Manager UI in Test Mode (Win32 only)"},
|
||||||
|
{"cm", client_manager_test, "VPN Client Manager UI in Test Mode (Win32 only)"},
|
||||||
{"memory_leak", memory_leak_test, "Memory leak test: Try to leak one byte by malloc()."},
|
{"memory_leak", memory_leak_test, "Memory leak test: Try to leak one byte by malloc()."},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user