summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2015-03-09 23:51:16 -0400
committerDaniel Stenberg <daniel@haxx.se>2015-03-10 20:37:17 +0100
commite424a1b3e794a9a98c255843a3c3bc9b5a7832a1 (patch)
tree97a08a1b7ade14a205a5f7f8b8e8936a2222604a /.travis.yml
parentfa895f2aa2f54a29a826c08660330201a32bfb23 (diff)
downloadgnurl-e424a1b3e794a9a98c255843a3c3bc9b5a7832a1.tar.gz
gnurl-e424a1b3e794a9a98c255843a3c3bc9b5a7832a1.tar.bz2
gnurl-e424a1b3e794a9a98c255843a3c3bc9b5a7832a1.zip
.travis.yml: Change CI make test to make test-full
- Change the continuous integration script to use 'make test-full' instead of just 'make test' so that the diagnostic log output is printed to stdout when a test fails. - Change the continuous integration script to use './configure --enable-debug' instead of just './configure' so that the memory analyzer will work during testing. Prior to this change Travis used its default C test script: ./configure && make && make test
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index b46478303..b97655f73 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -3,6 +3,8 @@ language: c
before_script:
- ./buildconf
+script: ./configure --enable-debug && make && make test-full
+
compiler:
- clang
- gcc