summaryrefslogtreecommitdiffstats
path: root/utils/test/testapi/htmlize/finish.sh
diff options
context:
space:
mode:
authorrohitsakala <rohitsakala@gmail.com>2017-01-21 15:43:35 +0530
committerRohit Sakala <rohitsakala@gmail.com>2017-01-21 14:32:31 +0000
commitc9ea476389a4a5d26840be8c96ce97c5d657ff46 (patch)
tree49e9870cadcae180de302b6be08ad901ce39997f /utils/test/testapi/htmlize/finish.sh
parent34338a12d9a8dd2ac9ddd2882efca18fc8fb33de (diff)
Remove start and finish builders from jenkins job
Removing those builders as it is unnecessary to start and finish server instead calling testresults.opnfv.org for specs. JIRA: FUNCTEST-705 Change-Id: Icfbce0c0eaf9d4ca20920de78450a1ffd580344c Signed-off-by: rohitsakala <rohitsakala@gmail.com>
Diffstat (limited to 'utils/test/testapi/htmlize/finish.sh')
-rw-r--r--utils/test/testapi/htmlize/finish.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/utils/test/testapi/htmlize/finish.sh b/utils/test/testapi/htmlize/finish.sh
deleted file mode 100644
index dc3aa868b..000000000
--- a/utils/test/testapi/htmlize/finish.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-# 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
-
-# Stop opnfv-testapi server
-proc_number=`ps -ef | grep opnfv-testapi | grep -v grep | wc -l`
-
-if [ $proc_number -gt 0 ]; then
- procs=`ps -ef | grep opnfv-testapi | grep -v grep`
- echo "Kill opnfv-testapi server $procs"
- ps -ef | grep opnfv-testapi | grep -v grep | awk '{print $2}' | xargs kill -kill &>/dev/null
-fi