collapseos/runtests.sh

12 lines
169 B
Bash
Raw Normal View History

#!/bin/sh -e
2019-10-31 09:59:47 +11:00
git clean -fxd
2020-01-01 05:07:05 +11:00
make -C tests
2019-10-31 09:59:47 +11:00
# verify that forth.bin is stable
cp cvm/forth.bin ref.bin
make -C cvm updatebootstrap
cmp cvm/forth.bin ref.bin
rm ref.bin