X86: Bit scan forward/reverse were accidentally transposed.
[gem5.git] / configs / boot / netperf-stream-udp-local.rcS
1 #!/bin/sh
2 SERVER=127.0.0.1
3 CLIENT=127.0.0.1
4
5 echo "setting up network..."
6 ifconfig lo 127.0.0.1
7
8 BINARY=/benchmarks/netperf-bin/netperf
9 TEST="UDP_STREAM"
10 SHORT_ARGS="-l 2 -- -m 4096"
11
12 echo "running netserver..."
13 /benchmarks/netperf-bin/netserver
14
15
16 SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS"
17
18 echo "starting test..."
19 echo $SHORT
20 eval $SHORT
21
22 /sbin/m5 exit