This patch fixes a loop variable name, which prevented printing the name of the test being executed.
Thanks, Kent Signed-off-by: Kent Yoder <[email protected]> testcases/ock_tests.sh.in | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/testcases/ock_tests.sh.in b/testcases/ock_tests.sh.in index e57a4df..78cf640 100755 --- a/testcases/ock_tests.sh.in +++ b/testcases/ock_tests.sh.in @@ -236,7 +236,7 @@ run_tests() echo "Will run the following tests for slot $1: $(ls -U $OCK_TESTS)" for i in $( ls -U $OCK_TESTS ) do - echo "=====Now executing '$j'======" + echo "=====Now executing '$i'======" $i -slot $1 $NO_STOP 2>&1 done } ------------------------------------------------------------------------------ This SF.net email is sponsored by Make an app they can't live without Enter the BlackBerry Developer Challenge http://p.sf.net/sfu/RIM-dev2dev _______________________________________________ Opencryptoki-tech mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opencryptoki-tech
