Ver código fonte

adding memory checks to automatic test case

Stasik0 11 anos atrás
pai
commit
a7abfb95aa
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      .travis.yml

+ 2 - 2
.travis.yml

@@ -3,7 +3,7 @@ notifications:
   email: true
 before_install:
  - sudo apt-get update -qq
- - sudo apt-get install -qq build-essential subversion git autoconf libtool texinfo python-lxml
+ - sudo apt-get install -qq build-essential subversion git autoconf libtool texinfo python-lxml valgrind
  - svn checkout svn://svn.code.sf.net/p/check/code/trunk check-code
  - cd check-code
  - autoreconf --install
@@ -12,4 +12,4 @@ before_install:
  - sudo make install
  - sudo ldconfig
  - cd ..
-script: ./autogen.sh && ./configure && make && make check
+script: ./autogen.sh && ./configure && make && make check && cd tests && make check-mem