.travis.yml: Change CI make test to make test-full
authorJay Satiro <raysatiro@yahoo.com>
Tue, 10 Mar 2015 03:51:16 +0000 (23:51 -0400)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 10 Mar 2015 19:37:17 +0000 (20:37 +0100)
- 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

.travis.yml

index b46478303da326de939bad83b020469f2d0ea940..b97655f73eba18c1145fc80adbbcdc9f953fa6bb 100644 (file)
@@ -3,6 +3,8 @@ language: c
 before_script:
   - ./buildconf
 
+script: ./configure --enable-debug && make && make test-full
+
 compiler:
   - clang
   - gcc