summaryrefslogtreecommitdiff
path: root/configs/boot/netperf-stream-udp-local.rcS
blob: ccd7654e26d7cd62cac17e2cecac918c3c7c76fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
SERVER=127.0.0.1
CLIENT=127.0.0.1

echo "setting up network..."
ifconfig lo 127.0.0.1

BINARY=/benchmarks/netperf-bin/netperf
TEST="UDP_STREAM"
SHORT_ARGS="-l 2 -- -m 4096"

echo "running netserver..."
/benchmarks/netperf-bin/netserver


SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS"

echo "starting test..."
echo $SHORT
eval $SHORT

/sbin/m5 exit