27 lines
343 B
Bash
Executable File
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}
|