c9dd126a847f56904663dc110b616f219cebe73c
[optf/osdf.git] / test / functest / scripts / stop-simulators.sh
1 #!/bin/bash
2 #
3 # -------------------------------------------------------------------------
4 #   Copyright (c) 2015-2017 AT&T Intellectual Property
5 #
6 #   Licensed under the Apache License, Version 2.0 (the "License");
7 #   you may not use this file except in compliance with the License.
8 #   You may obtain a copy of the License at
9 #
10 #       http://www.apache.org/licenses/LICENSE-2.0
11 #
12 #   Unless required by applicable law or agreed to in writing, software
13 #   distributed under the License is distributed on an "AS IS" BASIS,
14 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 #   See the License for the specific language governing permissions and
16 #   limitations under the License.
17 #
18 # -------------------------------------------------------------------------
19 #
20
21 # This script is in osdf/test/functest/scripts/
22
23 # We don't need all the directory names here and the "cd", but it may be needed later on
24 # Also, it will be a guard against some bad config where the directory doesn't exist
25
26 SCRIPTDIR=$(dirname $(readlink -f $0))
27 FUNC_TEST_DIR=$(dirname $SCRIPTDIR)
28 TEST_DIR=$(dirname $FUNC_TEST_DIR)
29 OSDF_DIR=$(dirname $TEST_DIR)
30 SIMULATORS_DIR=$FUNC_TEST_DIR/simulators
31
32 cd $SIMULATORS_DIR
33
34 XPID=$(ps -x | grep "python oof_dependencies_simulators.py" | grep -v grep | awk '{print $1}')
35 if [ -n "$XPID" ]; then
36   kill $XPID
37 fi