Skip to content
Snippets Groups Projects
Commit e36cbad0 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

Fixing number of overlaps allowed to be ZERO.

parent fbc51052
No related branches found
No related tags found
1 merge request!104Fixing number of overlaps allowed to be ZERO.
Pipeline #8552 failed
......@@ -113,7 +113,7 @@ overlap_check:
script:
- checkOverlaps -c topside.xml | tee doc/overlap_check.out
- echo "$(cat doc/overlap_check.out | grep ovlp | wc -l) overlaps..."
- if [[ "$(cat doc/overlap_check.out | grep ovlp | wc -l)" -gt "1" ]] ; then echo "Overlaps exist!" && false ; fi
- if [[ "$(cat doc/overlap_check.out | grep ovlp | wc -l)" -gt "0" ]] ; then echo "Overlaps exist!" && false ; fi
topside:config_testing:
stage: test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment