collapseos/runtests.sh

15 lines
225 B
Bash
Executable File

#!/bin/sh -e
git submodule init
git submodule update
git clean -fxd
make -C emul
make -C tests
# verify that forth.bin is stable
cp emul/forth.bin ref.bin
make -C emul updatebootstrap
cmp emul/forth.bin ref.bin
rm ref.bin