run_test.pl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· PL 代码 · 共 63 行
PL
63 行
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# run_test.pl,v 4.3 2002/05/06 21:31:57 irfan Exp
# -*- perl -*-
require Process;
use lib '../../../bin';
use PerlACE::Run_Test;
#
# These tests only run on Win32
#
if ($^O ne "MSWin32")
{
exit;
}
$test_timeout = 60;
@tests =
(
"Abandoned",
"APC",
# "Console_Input", # This test is interactive
"Directory_Changes",
"Exceptions",
"Handle_Close",
"Multithreading",
# "Network_Events", # This test is interactive
"Prerun_State_Changes",
"Registration",
"Registry_Changes",
"Removals",
"Suspended_Removals",
# "Talker", # This test is interactive
"Timeouts",
"Window_Messages",
);
for $test (@tests)
{
print STDOUT "\n________________________________________\n";
print STDOUT "\nStarting test \"$test\"";
print STDOUT "\n________________________________________\n\n";
$test_process = new PerlACE::Process ($test);
$test_process->Spawn ();
$test_result = $test_process->WaitKill ($test_timeout);
if ($test_result != 0)
{
print STDERR "\n________________________________________\n";
print STDERR "\nERROR: \"$test\" returned $test_result";
print STDERR "\n________________________________________\n";
}
print STDOUT "\n________________________________________\n";
print STDOUT "\n\"$test\" completed";
print STDOUT "\n________________________________________\n";
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?