run_test.pl
来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· PL 代码 · 共 79 行
PL
79 行
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}'
& eval 'exec perl -S $0 $argv:q'
if 0;
# run_test.pl,v 1.2 2003/03/31 18:21:47 bala Exp
# -*- perl -*-
use lib '../../../bin';
use PerlACE::Run_Test;
$iorfile = PerlACE::LocalFile ("test.ior");
unlink $iorfile;
$status = 0;
$SV = new PerlACE::Process ("Collocated_Test");
print STDERR "======== Running in Default Mode \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile");
$sv = $SV->SpawnWaitKill (60);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
print STDERR "======== Running with per-orb \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile -ORBCollocation per-orb");
$sv = $SV->SpawnWaitKill (60);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
print STDERR "======== Running with no collocation \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile -ORBCollocation no");
$sv = $SV->SpawnWaitKill (60);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
print STDERR "======== Running in default mode and two ORBS \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile -n ");
$sv = $SV->SpawnWaitKill (60);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
print STDERR "======== Running in per-orb mode and two ORBS \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile -n -ORBCollocation per-orb");
$sv = $SV->SpawnWaitKill (60);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
print STDERR "======== Running in no collocation mode and two ORBS \n";
$SV->Arguments ("-o $iorfile -k file://$iorfile -n -ORBCollocation per-orb");
$sv = $SV->SpawnWaitKill (60);
$SV->check_return_value (0);
if ($sv != 0) {
print STDERR "ERROR in Collocated_Test\n";
$status = 1;
}
unlink $iorfile;
exit $status;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?