summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYiting.Li <liyiting@huawei.com>2016-02-18 14:15:25 +0800
committerJun Li <matthew.lijun@huawei.com>2016-02-18 06:34:19 +0000
commit478f1ca7c6732e4e94d072fb249b67ce7547be0d (patch)
treecb127ba22802c1090c6c421a86ef28e24f4ebaae
parentf5922fa21147a48bd6d956a5e5c59364718cf00a (diff)
[Bottleneck-29]Add the End-to-End performance test frameworkbrahmaputra.1.0
delete the tool package and after discussion put it into somewhere ,or give out other method to get them. Change-Id: I86fa2bd405fa45bd3673fbfb23d03769d4e15eca Signed-off-by: Yiting.Li <liyiting@huawei.com> (cherry picked from commit f0b99397322d547e18e72340c061a4e7ef4d4775)
-rw-r--r--vstf/tool_package/install.sh53
-rw-r--r--vstf/tool_package/netperf-2.7.0.tar.gzbin1299801 -> 0 bytes
-rw-r--r--vstf/tool_package/qperf-0.4.9.tar.gzbin207844 -> 0 bytes
-rw-r--r--vstf/tool_package/vnstat-1.14.tar.gzbin103281 -> 0 bytes
4 files changed, 0 insertions, 53 deletions
diff --git a/vstf/tool_package/install.sh b/vstf/tool_package/install.sh
deleted file mode 100644
index 9d50516e..00000000
--- a/vstf/tool_package/install.sh
+++ /dev/null
@@ -1,53 +0,0 @@
-#!/bin/bash
-##############################################################################
-# Copyright (c) 2015 Huawei Technologies Co.,Ltd and others.
-#
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-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
deleted file mode 100644
index 666945af..00000000
--- a/vstf/tool_package/netperf-2.7.0.tar.gz
+++ /dev/null
Binary files differ
diff --git a/vstf/tool_package/qperf-0.4.9.tar.gz b/vstf/tool_package/qperf-0.4.9.tar.gz
deleted file mode 100644
index 12ec727c..00000000
--- a/vstf/tool_package/qperf-0.4.9.tar.gz
+++ /dev/null
Binary files differ
diff --git a/vstf/tool_package/vnstat-1.14.tar.gz b/vstf/tool_package/vnstat-1.14.tar.gz
deleted file mode 100644
index f8b0bcf4..00000000
--- a/vstf/tool_package/vnstat-1.14.tar.gz
+++ /dev/null
Binary files differ