From: Jay Satiro Date: Tue, 10 Mar 2015 03:51:16 +0000 (-0400) Subject: .travis.yml: Change CI make test to make test-full X-Git-Tag: curl-7_42_0~171 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e424a1b3e794a9a98c255843a3c3bc9b5a7832a1;p=thirdparty%2Fcurl.git .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 --- diff --git a/.travis.yml b/.travis.yml index b46478303d..b97655f73e 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