Commit 563e3d9d authored by Milo Yip's avatar Milo Yip

Merge pull request #37 from miloyip/TravisSetting2

Adds Valgrind memcheck process to Tavis CI
parents 1acfc216 93e1488c
...@@ -11,7 +11,7 @@ env: ...@@ -11,7 +11,7 @@ env:
before_install: before_install:
- sudo add-apt-repository -y ppa:codegear/release - sudo add-apt-repository -y ppa:codegear/release
- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -y premake4 - sudo apt-get install -y premake4 valgrind
install: true install: true
...@@ -25,4 +25,5 @@ script: ...@@ -25,4 +25,5 @@ script:
- make -C build/gmake -f example.make - make -C build/gmake -f example.make
- cd bin - cd bin
- ./unittest_${config_suffix} - ./unittest_${config_suffix}
- valgrind --leak-check=full --error-exitcode=1 ./unittest_${config_suffix}
- ./perftest_${config_suffix} - ./perftest_${config_suffix}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment