diff options
| author | Adam Izraelevitz | 2017-12-22 19:34:39 -0500 |
|---|---|---|
| committer | Jack Koenig | 2017-12-22 16:34:39 -0800 |
| commit | 69cf8f1a084e477284d8ae48a4a7abc499e92991 (patch) | |
| tree | 6480ac7420dfc1019cafe154ac397466dda3c4db /.run_formal_checks.sh | |
| parent | 19abcb04ad005a21319354550e87bfd428ec5597 (diff) | |
API change: out-of-bounds vec accesses now invalid, not first element (#685)
[skip formal checks]
Generate nicer name for remove accesses
Diffstat (limited to '.run_formal_checks.sh')
| -rwxr-xr-x | .run_formal_checks.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.run_formal_checks.sh b/.run_formal_checks.sh index ace9e4b0..942b3e1a 100755 --- a/.run_formal_checks.sh +++ b/.run_formal_checks.sh @@ -12,7 +12,7 @@ DUT=$1 if [ $TRAVIS_PULL_REQUEST = "false" ]; then echo "Not a pull request, no formal check" exit 0 -elif [[ $TRAVIS_COMMIT_MESSAGE == *"[skip formal checks]"* ]]; then +elif git log --format=%B --no-merges $TRAVIS_BRANCH..HEAD | grep '\[skip formal checks\]'; then echo "Commit message says to skip formal checks" exit 0 else |
