aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexample/l2fwd_simple/l2fwd_simple_run.sh2
-rwxr-xr-xexample/switch/switch_run.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/example/l2fwd_simple/l2fwd_simple_run.sh b/example/l2fwd_simple/l2fwd_simple_run.sh
index 6050360c7..292d0e3e1 100755
--- a/example/l2fwd_simple/l2fwd_simple_run.sh
+++ b/example/l2fwd_simple/l2fwd_simple_run.sh
@@ -21,7 +21,7 @@ if [ "$STATUS" -ne 143 ]; then
exit 1
fi
-if [ `stat -c %s pcapout.pcap` -ne `stat -c %s udp64.pcap` ]; then
+if [ `stat -c %s pcapout.pcap` -ne `stat -c %s ${PCAP_IN}` ]; then
echo "File sizes disagree"
exit 1
fi
diff --git a/example/switch/switch_run.sh b/example/switch/switch_run.sh
index 9b32973e5..3f8f9db36 100755
--- a/example/switch/switch_run.sh
+++ b/example/switch/switch_run.sh
@@ -33,7 +33,7 @@ fi
for i in `seq 1 $NUM_RX_PORT`;
do
- if [ `stat -c %s pcapout${i}.pcap` -ne `stat -c %s udp64.pcap` ]; then
+ if [ `stat -c %s pcapout${i}.pcap` -ne `stat -c %s ${PCAP_IN}` ]; then
echo "Error: Output file $i size not matching"
RETVAL=1
fi