tests: cleanup programs when no longer needed 17/193717/1
authorMichal Bloch <m.bloch@samsung.com>
Fri, 23 Nov 2018 11:41:35 +0000 (12:41 +0100)
committerMichal Bloch <m.bloch@samsung.com>
Fri, 23 Nov 2018 12:11:58 +0000 (13:11 +0100)
Change-Id: I5cbe9a0723d7cecc657198fb716e78256c5bbde9

tests/dlog_test.in

index 06cd47a..115ae24 100644 (file)
@@ -188,6 +188,9 @@ if [ -e $TESTDIR/dlog_rotating_file.4 ]; then fail; else ok; fi
 LOG_DETAILS="testing the size of log files"
 if [ $(du $TESTDIR/dlog_rotating_file.3 | sed "s#$TESTDIR/dlog_rotating_file.3##g") -eq 16 ]; then ok; else fail; fi # the actual size is one sector more (so 12 -> 16) because the limit is checked after reaching it, not before
 
+kill $UTIL_PID
+UTIL_PID=-1
+
 cmd="dlogutil -t 1 -v "
 
 format="process"
@@ -283,6 +286,10 @@ dlogutil -f $TESTDIR/dlog_mt_test &
 MT_TEST=$!
 test_libdlog && ok || fail
 
+sleep 1
+kill $MT_TEST
+MT_TEST=-1
+
 dlogutil -c
 SPAWN_CNT=1000