From 8f1101df131a4d3e03b377738507d88b745831c0 Mon Sep 17 00:00:00 2001 From: "Yiting.Li" Date: Tue, 22 Dec 2015 17:11:12 -0800 Subject: Upload the contribution of vstf as bottleneck network framework. End to End Performance test JIRA:BOTTLENECK-29 Change-Id: Ib2c553c8b60d6cda9e7a7b52b737c9139f706ebd Signed-off-by: Yiting.Li --- vstf/tool_package/install.sh | 45 +++++++++++++++++++++++++++++++++ vstf/tool_package/netperf-2.7.0.tar.gz | Bin 0 -> 1299801 bytes vstf/tool_package/qperf-0.4.9.tar.gz | Bin 0 -> 207844 bytes vstf/tool_package/vnstat-1.14.tar.gz | Bin 0 -> 103281 bytes 4 files changed, 45 insertions(+) create mode 100755 vstf/tool_package/install.sh create mode 100755 vstf/tool_package/netperf-2.7.0.tar.gz create mode 100755 vstf/tool_package/qperf-0.4.9.tar.gz create mode 100755 vstf/tool_package/vnstat-1.14.tar.gz (limited to 'vstf/tool_package') diff --git a/vstf/tool_package/install.sh b/vstf/tool_package/install.sh new file mode 100755 index 00000000..471457d2 --- /dev/null +++ b/vstf/tool_package/install.sh @@ -0,0 +1,45 @@ +#!/bin/bash + +function usage() +{ + echo -e "install: + install [path]; + -->ops: + path: path of the souce code, default : './' + " +} + +function install() +{ + local file=$1 + local dir=${file%.tar.gz} + tar -zxvf $file + cd $dir + if [ -e "configure" ]; then + ./configure + fi + if [ -e "Makefile" ]; then + make && make install + echo "install $dir successfully" + else + echo "install $dir failed" + fi + + cd .. && rm $dir -r + +} + +if [ $# -gt 2 ]; then + usage + exit -1 +fi + +code_path="./" +if [ $# -eq 2 ]; then + code_path=$1 +fi +cd $code_path +for file in $(ls *.tar.gz);do + install $file +done + diff --git a/vstf/tool_package/netperf-2.7.0.tar.gz b/vstf/tool_package/netperf-2.7.0.tar.gz new file mode 100755 index 00000000..666945af Binary files /dev/null and b/vstf/tool_package/netperf-2.7.0.tar.gz differ diff --git a/vstf/tool_package/qperf-0.4.9.tar.gz b/vstf/tool_package/qperf-0.4.9.tar.gz new file mode 100755 index 00000000..12ec727c Binary files /dev/null and b/vstf/tool_package/qperf-0.4.9.tar.gz differ diff --git a/vstf/tool_package/vnstat-1.14.tar.gz b/vstf/tool_package/vnstat-1.14.tar.gz new file mode 100755 index 00000000..f8b0bcf4 Binary files /dev/null and b/vstf/tool_package/vnstat-1.14.tar.gz differ -- cgit 1.2.3-korg