summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 2722936..ead11f8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,6 +30,7 @@ install:
sudo apt-get update -qq;
fi
- sudo apt-get install -qq ${REAL_CXX}
+ - sudo apt-get install -qq libgtest-dev
## Do something before the main test script
# before_script: ...
@@ -39,7 +40,8 @@ script:
- make -k -j2 CXX=${REAL_CXX} CPPFLAGS=-DQUIET
## Do something after the main test script
-# after_script: ...
+after_script:
+ - make test
### The rest of the file creates a build matrix
### containing gcc-4.6 through gcc-4.7 and clang-3.1