Test case "mc_opts" fails as it is not able to install "opts" and "opts_e" files at desired location. This is because the path of these files mentioned in the "mc_opts" script is incorrect. Following patch fixes the above problem.
Signed-off-by: Sumit Dhoot <[email protected]> Index: ltp-full-20100630/testcases/network/multicast/mc_opts/mc_opts =================================================================== --- ltp-full-20100630.orig/testcases/network/multicast/mc_opts/mc_opts +++ ltp-full-20100630/testcases/network/multicast/mc_opts/mc_opts @@ -57,7 +57,7 @@ setup() mkdir -p $TCtmp for i in $EXECUTABLES do - install -m 0755 "$LTPROOT/$i" "$TCtmp/." + install -m 0755 "$LTPROOT/testcases/bin/$i" "$TCtmp/." done } ------------------------------------------------------------------------------ This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first _______________________________________________ Ltp-list mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ltp-list
