test: Run command line tools in Travis

Do a quick execution of each of the command line tools
in the continuous integration build, so that any (say)
sanitizer failures show up.
This commit is contained in:
David Drysdale 2016-02-02 11:02:28 +00:00
parent 3f301a6fe3
commit 03ba16fe7a
1 changed files with 3 additions and 0 deletions

View File

@ -91,6 +91,9 @@ script:
- ./buildconf && $SCAN_WRAP ./configure --disable-symbol-hiding --enable-expose-statics --enable-maintainer-mode --enable-debug $CONFIG_OPTS && $SCAN_WRAP make
- |
if [ "$BUILD_TYPE" != "ios" ]; then
./adig www.google.com
./acountry www.google.com
./ahost www.google.com
cd test && autoreconf -iv && ./configure $CONFIG_OPTS && make && ./arestest -v && cd ..
fi
- |