From: Rishi k. K R. <ris...@li...> - 2010-04-28 06:11:29
|
The branch, master, has been updated via c2ce5363adf4a3f8482d7c4476a9beeaf7bc8aef (commit) from d9f3d25b9db35073c7104b759d526869d9867692 (commit) - Log ----------------------------------------------------------------- commit c2ce5363adf4a3f8482d7c4476a9beeaf7bc8aef Author: Rishikesh K Rajak <ris...@li...> Date: Wed Apr 28 11:39:03 2010 +0530 Generating HTML Output.....!! Can't open perl script "/opt/ltp/tools/genhtml.pl": No such file or directory Following patch fixes the same. Signed-off-by: Subrata Modak <su...@li...> Acked-by: Garrett Cooper <yan...@gm...> ----------------------------------------------------------------------- Summary of changes: runltp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/runltp b/runltp index b848a7f..36986af 100755 --- a/runltp +++ b/runltp @@ -846,7 +846,7 @@ main() export TEST_OUTPUT_DIRECTORY="$LTPROOT/output" export TEST_LOGS_DIRECTORY=$LOGS_DIRECTORY echo "Generating HTML Output.....!!" - ( perl $LTPROOT/tools/genhtml.pl $LTPROOT/tools/html_report_header.txt test_start test_end test_output execution_status $OUTPUT_DIRECTORY > $HTMLFILE; ) + ( perl $LTPROOT/bin/genhtml.pl $LTPROOT/tools/html_report_header.txt test_start test_end test_output execution_status $OUTPUT_DIRECTORY > $HTMLFILE; ) echo "Generated HTML Output.....!!" echo "Location: $HTMLFILE"; hooks/post-receive -- ltp |