Commit dde36765 authored by Jan Kiene's avatar Jan Kiene
Browse files

check for file being empty

parent eb062fd8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -489,7 +489,7 @@ stages:
    - *print-common-info

    - cat $FAILED_TESTCASES_LIST
    - if [ -f "$FAILED_TESTCASES_LIST" ]; then
    - if [ -f "$FAILED_TESTCASES_LIST" ] && [ ! -z "$( ls -A $FAILED_TESTCASES_LIST )" ]; then
    -   $TEST_SUITE=$(cat $FAILED_TESTCASES_LIST)
    - else
    -   echo "All tested cases were bit-exact between $CI_MERGE_REQUEST_TARGET_BRANCH_NAME and $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME. No need to check for regressions."