1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
#!/usr/bin/env bash
#
# Network Performance Meter
# Copyright (C) 2009-2024 by Thomas Dreibholz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Contact: thomas.dreibholz@gmail.com
#
# Bash options:
set -e
rm -f *.vec *.sca
# ====== Start the passive side =============================================
netperfmeter 9000 &
SERVER_PID=$!
sleep 5
cleanup() {
kill ${SERVER_PID}
}
trap cleanup 0
netperfmeter localhost:9000 \
-vector=vector.vec \
-scalar=scalar.sca \
-tcp const10:const1452:const5:const1452 \
-sctp const10:const1452:const5:const1452 \
-dccp const10:const1452:const5:const1452 \
-udp const10:const1452:const5:const1452 \
-runtime=10
# ====== Stop the passive side ==============================================
kill ${SERVER_PID}
# ====== Check results ======================================================
RESULTS="scalar-active.sca scalar-passive.sca vector-active-00000000-0000.vec vector-active-00000001-0000.vec vector-active-00000002-0000.vec vector-active-00000003-0000.vec vector-active.vec vector-passive-00000000-0000.vec vector-passive-00000001-0000.vec vector-passive-00000002-0000.vec vector-passive-00000003-0000.vec vector-passive.vec"
for result in ${RESULTS} ; do
if [ -s ${result} ] ; then
ls -l ${result}
else
echo >&2 "ERROR: ${result} does not exist or is empty!"
exit 1
fi
done
echo "Test passed!"
|