summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xtest/functest/scripts/start-simulators.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functest/scripts/start-simulators.sh b/test/functest/scripts/start-simulators.sh
index 75209f6..b8b5719 100755
--- a/test/functest/scripts/start-simulators.sh
+++ b/test/functest/scripts/start-simulators.sh
@@ -40,8 +40,9 @@ SIMULATORS_DIR=$FUNC_TEST_DIR/simulators
ln -s $SIMULATORS_DIR/simulated-config config
XPID=$(ps -x | grep "python oof_dependencies_simulators.py" | grep -v grep | awk '{print $1}')
+ echo "simulator pid " $XPID
if [ -z "$XPID" ]; then
- python oof_dependencies_simulators.py > simulator-logs 2>&1 &
+ python oof_dependencies_simulators.py & # > simulator-logs 2>&1 &
sleep 20
fi
)