Merge commit 'a9029581bc18870e8a1b84f77e546500bad7ec0e' into features/yaml

This commit is contained in:
Jim Hague 2017-09-13 15:46:47 +01:00
commit 9e47919f42
1 changed files with 3 additions and 2 deletions

View File

@ -858,9 +858,10 @@ echo "--------------- Test Output ------------------" | write_result result.$dsc
pre
out "[log] Executing test"
( ${SHELL} $dsc_test ${TPKG_ARGS} 2>&1 ) | write_result result.$dsc_basename
( ${SHELL} $dsc_test ${TPKG_ARGS} 2>&1 ) > result.$dsc_basename.tmp
test_result=$?
write_result result.$dsc_basename < result.$dsc_basename.tmp
rm -f result.$dsc_basename.tmp
epoch # would like to run after post, but that is not possible :-(
if [ $test_result -ne 0 ]; then
err "[warning] Test executed with errors: $test_result."