mirror of https://github.com/ludocode/mpack
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
403 B
Bash
21 lines
403 B
Bash
#!/bin/bash
|
|
|
|
# Builds and runs the unit test suite under UNIX.
|
|
#
|
|
# Pass environment variable CC to specify the compiler.
|
|
#
|
|
# This script is run by the continuous integration server to test MPack on UNIX
|
|
# systems.
|
|
|
|
set -e
|
|
|
|
# Amalgamate if necessary
|
|
if [[ "$AMALGAMATED" == "1" ]]; then
|
|
tools/amalgamate.sh
|
|
cd .build/amalgamation
|
|
fi
|
|
pwd
|
|
|
|
# Run the "more" variant of unit tests
|
|
tools/unit.sh more
|