From: <sg...@us...> - 2003-11-17 19:08:17
|
Update of /cvsroot/libfunutil/libfunutil/toc/sbin In directory sc8-pr-cvs1:/tmp/cvs-serv9545/toc/sbin Modified Files: toc_core.sh Log Message: Fixed sed expr to not bail after the first line, so the toc_run_description can be elsewhere in the file. Index: toc_core.sh =================================================================== RCS file: /cvsroot/libfunutil/libfunutil/toc/sbin/toc_core.sh,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- toc_core.sh 14 Oct 2003 03:43:52 -0000 1.28 +++ toc_core.sh 17 Nov 2003 19:07:17 -0000 1.29 @@ -460,7 +460,7 @@ local desc= toc_find_test $testname && { path=${TOC_FIND_RESULT} - desc=$(sed -ne 's|\#.*toc_run_description.*= *\(.*\)|\1|p;q' ${TOC_FIND_RESULT}); + desc=$(sed -ne 's|\#.*toc_run_description.*= *\(.*\)|\1|p' ${TOC_FIND_RESULT}); } || { toc_die 127 toc_run cannot find script for test $testname. } |