The shell command to remove all the temp-files created had a bug that try to remove /dev/null. If the ltp is run with root permission the /dev/null will be removed.
Signed-off-by: jungsoo.son <[email protected]> --- testscripts/test_robind.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testscripts/test_robind.sh b/testscripts/test_robind.sh index 142678a..4c01f4e 100755 --- a/testscripts/test_robind.sh +++ b/testscripts/test_robind.sh @@ -193,7 +193,7 @@ function testdir echo >> $PASSLOG fi # Remove all the temp-files created. - eval rm -rf ${TMPDIR}/${dir}/* > /dev/null 2>&1 /dev/null || true + eval rm -rf ${TMPDIR}/${dir}/* > /dev/null 2>&1 || true unset TDIRECTORY popd } -- 1.7.9.5 ------------------------------------------------------------------------------ See everything from the browser to the database with AppDynamics Get end-to-end visibility with application monitoring from AppDynamics Isolate bottlenecks and diagnose root cause in seconds. Start your free trial of AppDynamics Pro today! http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
