diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-04-30 07:05:24 -0700 |
---|---|---|
committer | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-05-03 23:59:44 -0700 |
commit | d73a9bfee196a12161f6c1ae64d4ca97e9019c71 (patch) | |
tree | bb28f1f390862a84c66c0abfe0b8d766b6352851 /test/mocks | |
parent | 1719606aee6f299f9fa03671c0265cdb6007567e (diff) |
Kill the 'sleep' process as well
ROP_file_creator.sh spawns 'sleep' cmd as a child
hence it needs to be killed as well on clean up.
Change-Id: Ic2007e710b6efa0028ebd239f26b7eff6a9e04ea
Issue-ID: INT-1577
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/mocks')
-rwxr-xr-x | test/mocks/mass-pnf-sim/clean.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mocks/mass-pnf-sim/clean.sh b/test/mocks/mass-pnf-sim/clean.sh index 28df0ef78..7ba25e408 100755 --- a/test/mocks/mass-pnf-sim/clean.sh +++ b/test/mocks/mass-pnf-sim/clean.sh @@ -1,6 +1,6 @@ #!/bin/bash -killall ROP_file_creator.sh +killall ROP_file_creator.sh sleep docker stop $(docker ps -aq); docker rm $(docker ps -aq) |