1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-19 09:49:00 +10:00
collapseos/runtests.sh
Virgil Dupras 532bcc7e78 cvm: split stage and forth xcomp units
I wanted to make CVM's forth use the Grid subsystem, but doing so
would break the stage binary. Hence, this split.
2020-11-14 15:00:03 -05:00

12 lines
169 B
Bash
Executable File

#!/bin/sh -e
git clean -fxd
make -C tests
# verify that stage.bin is stable
cp cvm/stage.bin ref.bin
make -C cvm updatebootstrap
cmp cvm/stage.bin ref.bin
rm ref.bin