Commit 7495d19e authored by norvell's avatar norvell
Browse files

Changed "\[evs[ -]non[ -]*be\]" to "\[evs[ -]*non[ -]*be\]" to allow any...

Changed "\[evs[ -]non[ -]*be\]" to "\[evs[ -]*non[ -]*be\]" to allow any combinations of spaces/hyphens between EVS and non-be in the tag.
parent 33dfd629
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -305,7 +305,7 @@ self-test-on-merge-request:
    ### analyse test output

    # some helper variables - "|| true" to prevent failures from grep not finding anything
    - evs_non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[evs[ -]non[ -]*be\]") || true
    - evs_non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[evs[ -]*non[ -]*be\]") || true
    - non_be_flag=$(echo $CI_MERGE_REQUEST_TITLE | grep -c --ignore-case "\[non[ -]*be\]") || true
    - run_errors=$(cat test_output.txt test_output_evs.txt | grep -c "test conditions had run errors") || true
    - bitexact=$(cat test_output.txt | grep -c "All [0-9]* tests are bitexact") || true