diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-05 03:53:51 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-03-05 03:53:51 +0000 |
commit | 483be1f18490d1ba13c881930f2e6c7b410d7fa2 (patch) | |
tree | ef58c8ba9258ee74ae026d64639b5ac03e5007d5 /performance-tests | |
parent | e4e58019207fddfd0c58bbd1505a3390cc3029de (diff) | |
download | ATCD-483be1f18490d1ba13c881930f2e6c7b410d7fa2.tar.gz |
Too many ../'s in the use lib lines
Diffstat (limited to 'performance-tests')
-rwxr-xr-x | performance-tests/RPC/run_test.pl | 2 | ||||
-rwxr-xr-x | performance-tests/TCP/run_test.pl | 2 | ||||
-rwxr-xr-x | performance-tests/UDP/run_test.pl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/performance-tests/RPC/run_test.pl b/performance-tests/RPC/run_test.pl index 305509dc83a..408e201270f 100755 --- a/performance-tests/RPC/run_test.pl +++ b/performance-tests/RPC/run_test.pl @@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' # $Id$ # -*- perl -*- -use lib '../../bin'; +use lib '../bin'; use PerlACE::Run_Test; $SV = new PerlACE::Process ("server"); diff --git a/performance-tests/TCP/run_test.pl b/performance-tests/TCP/run_test.pl index 34c4f416c39..cd58c5ec2c7 100755 --- a/performance-tests/TCP/run_test.pl +++ b/performance-tests/TCP/run_test.pl @@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' # $Id$ # -*- perl -*- -use lib '../../bin'; +use lib '../bin'; use PerlACE::Run_Test; $SV = new PerlACE::Process ("tcp_test", "-s"); diff --git a/performance-tests/UDP/run_test.pl b/performance-tests/UDP/run_test.pl index 638b8c18c99..b545b6e398f 100755 --- a/performance-tests/UDP/run_test.pl +++ b/performance-tests/UDP/run_test.pl @@ -5,7 +5,7 @@ eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' # $Id$ # -*- perl -*- -use lib '../../bin'; +use lib '../bin'; use PerlACE::Run_Test; $SV = new PerlACE::Process ("udp_test", "-r"); |