diff --git a/bin/coreutil.sh b/bin/coreutil.sh index 8c52da4..dcc9a81 100644 --- a/bin/coreutil.sh +++ b/bin/coreutil.sh @@ -653,7 +653,7 @@ function TTTF_addCaseEntry { echo -e "$part1\nFAILURE\n${reason}\n" >> "$8" fi;; SKIP ) - echo "
  • $mycasename - InputDdir
    $4 : $reason-Time elapsed: $7
  • " >> "$1" + echo "
  • $mycasename - InputDdir
    $4 : $reason - Time elapsed: $7
  • " >> "$1" if [[ -n $TTXX_summary ]]; then echo -e "$part1\nSKIPPED\n${reason}\n" >> "$8" fi;; diff --git a/bin/man.sh b/bin/man.sh index 19c41d1..95170e3 100644 --- a/bin/man.sh +++ b/bin/man.sh @@ -274,7 +274,7 @@ function manpage () { the error is logged and the execution is stopped. The result of the case is not affected. - FINS - The space separated list or an array of test finalization commands. - - TTPR_timeout - The default test case timeout in seconds. default is 120 sec. This variable must be defined in the + - TTPR_timeout - The default test case timeout in seconds. default is 240 sec. This variable must be defined in the description section of test case file or anywhere in the Test Suite or Test Property file. A definition in the script section of a Test Case has no effect. - TTPR_additionalTime - The extra wait time after the test case time out. If the test case does not end after this diff --git a/bin/util.sh b/bin/util.sh index 968d0dd..b8b2355 100644 --- a/bin/util.sh +++ b/bin/util.sh @@ -85,7 +85,7 @@ function setSkip { else setVar 'TTPRN_skip' 'unspecified' fi - printInfo "Set SKIP reason $TTPRN_skip" + printInfo "$FUNCNAME : $TTPRN_skip" } readonly -f setSkip diff --git a/test/jobtest/Suite1/TestSuite.sh b/test/jobtest/Suite1/TestSuite.sh index 91a7407..81213bc 100644 --- a/test/jobtest/Suite1/TestSuite.sh +++ b/test/jobtest/Suite1/TestSuite.sh @@ -4,11 +4,13 @@ PREPS=myPrep myPrep() { echo "expected result is in parallel mode:" - echo "executed=4 failures=0 errors=2 skipped=0" + echo "executed=4 failures=0 errors=1 skipped=0" + echo "Test case error (timout) for case Case1EndlessSync" echo echo "in serial mode:" echo "executed=4 failures=0 errors=1 skipped=0" echo "if 'y' was pressed during execution of case Case0ReadFromConsole" + echo "Test case error (timout) for case Case1EndlessSync" echo promptYesNo } \ No newline at end of file