urbit/sh/test
benjamin-tlon 1c4732ca22
Run urbit tests on the debug build, with GC enabled. (#1252)
* Run tests with `urbit-debug` and enable GC while running tests.
* Build `urbit-debug` with `-O0`.
2019-04-25 16:45:39 -07:00

41 lines
575 B
Bash
Executable File

#!/usr/bin/env bash
set -e
pkg=$(nix-build nix/ops -A test --no-out-link --arg debug true)
hdr () {
echo =====$(sed 's/./=/g' <<< "$1")=====
echo ==== $1 ====
echo =====$(sed 's/./=/g' <<< "$1")=====
}
for f in $(find $pkg/ -type f)
do
hdr $(basename $f)
cat $f
done
fail=0
for f in $(find "$pkg/" -type f)
do
if egrep "(ford|warn): " $f >/dev/null
then
if [[ $fail -eq 0 ]]
then
hdr "Test Failures"
fi
echo "ERROR Test failure in $(basename $f)"
((fail++))
fi
done
if [[ $fail -eq 0 ]]
then
hdr "Success"
fi
exit "$fail"