Skip to content

Commit

Permalink
Fix buildscript grepping
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Apr 26, 2015
1 parent 97d2c44 commit df25cb5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildscript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ cmake -DCUSTOM_ALLOC=$CUSTOM_ALLOC -DCMAKE_BUILD_TYPE=Debug $SOURCE
make
ctest -V
ctest -T memcheck | tee memcheck.out
grep -vE 'Memory Leak - [1-9][0-9]*' memcheck.out
# Hack - multiline return status doesn't work
grep -E 'Memory Leak - [1-9][0-9]*' memcheck.out | grep -v 'Memory Leak'

0 comments on commit df25cb5

Please sign in to comment.