libexpat/.travis.sh
2017-03-13 18:44:06 +01:00

27 lines
343 B
Bash
Executable File

#! /bin/bash
# Copyright (C) 2017 Sebastian Pipping <sebastian@pipping.org>
# Licensed under the MIT license
set -e
PS4='# '
set -x
ret=0
# Run test suite
cd expat
for mode in \
address \
lib-coverage \
; do
git clean -X -f
./buildconf.sh
CFLAGS='-g -pipe' ./qa.sh ${mode} || ret=1
done
exit ${ret}