mirror of
https://git.freebsd.org/ports.git
synced 2025-04-30 10:36:38 -04:00
For the most part, this complicates the build, moves the debug log from /tmp to /var/log and changes debugging to default to off. Also: - Don't let netserver chmod(2) /dev/null to 644 when debug log is off. - Take back port. Approved by: netchild
69 lines
3.1 KiB
Bash
69 lines
3.1 KiB
Bash
--- doc/examples/runemomniagg2.sh.orig 2011-07-28 18:37:22 UTC
|
|
+++ doc/examples/runemomniagg2.sh
|
|
@@ -1,4 +1,7 @@
|
|
#set -x
|
|
+
|
|
+NETPERF="%%PREFIX%%/bin/netperf"
|
|
+
|
|
# edit and add to this array as necessary
|
|
# the hosts you will use should be contiguous
|
|
# starting at index zero
|
|
@@ -84,11 +87,11 @@ echo four dl585 G5 clients rh5.2, each w
|
|
echo TCP_STREAM
|
|
for i in $concurrent_sessions; do
|
|
j=0;
|
|
- NETUUID=`netperf -t uuid`;
|
|
+ NETUUID=`$NETPERF -t uuid`;
|
|
echo $i concurrent streams id $NETUUID;
|
|
while [ $j -lt $i ]; do
|
|
client=`expr $j % $num_cli` ;
|
|
- netperf $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -m 64K -u $NETUUID & HDR="-P 0";
|
|
+ $NETPERF $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -m 64K -u $NETUUID & HDR="-P 0";
|
|
j=`expr $j + 1`;
|
|
done;
|
|
wait;
|
|
@@ -99,11 +102,11 @@ echo four dl585 G5 clients rh5.2, each w
|
|
echo TCP_MAERTS
|
|
for i in $concurrent_sessions; do
|
|
j=0;
|
|
- NETUUID=`netperf -t uuid`;
|
|
+ NETUUID=`$NETPERF -t uuid`;
|
|
echo $i concurrent streams id $NETUUID;
|
|
while [ $j -lt $i ]; do
|
|
client=`expr $j % $num_cli` ;
|
|
- netperf $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -M ,64K -u $NETUUID & HDR="-P 0";
|
|
+ $NETPERF $HDR -t omni -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} $socket_sizes -M ,64K -u $NETUUID & HDR="-P 0";
|
|
j=`expr $j + 1`;
|
|
done;
|
|
wait;
|
|
@@ -115,11 +118,11 @@ echo four dl585 G5 clients rh5.2, each w
|
|
HDR="-P 1"
|
|
for i in $concurrent_sessions;
|
|
do j=0;
|
|
- NETUUID=`netperf -t uuid`;
|
|
+ NETUUID=`$NETPERF -t uuid`;
|
|
echo $i concurrent streams id $NETUUID;
|
|
while [ $j -lt $i ]; do
|
|
client=`expr $j % $num_cli` ;
|
|
- netperf $HDR -t omni -f m -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -s 1M -S 1M -r 64K -b 12 -u $NETUUID & HDR="-P 0";
|
|
+ $NETPERF $HDR -t omni -f m -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -s 1M -S 1M -r 64K -b 12 -u $NETUUID & HDR="-P 0";
|
|
j=`expr $j + 1`;
|
|
done;
|
|
wait;
|
|
@@ -130,14 +133,14 @@ echo four dl585 G5 clients rh5.2, each w
|
|
echo TCP_RR aggregates
|
|
HDR="-P 1"
|
|
for i in $concurrent_sessions; do
|
|
- NETUUID=`netperf -t uuid`;
|
|
+ NETUUID=`$NETPERF -t uuid`;
|
|
echo $i concurrent streams id $NETUUID;
|
|
for b in $burst_sizes; do
|
|
echo burst of $b;
|
|
j=0;
|
|
while [ $j -lt $i ]; do
|
|
client=`expr $j % $num_cli` ;
|
|
- netperf $HDR -t omni -f x -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -r 1 -b $b -D -u $NETUUID & HDR="-P 0";
|
|
+ $NETPERF $HDR -t omni -f x -c -C -H ${remote_hosts[$client]} -l $length $confidence -- $CSV -H ${remote_hosts[$client]} -r 1 -b $b -D -u $NETUUID & HDR="-P 0";
|
|
j=`expr $j + 1`;
|
|
done;
|
|
wait;
|