ci_test: do simple boot tests

This commit is contained in:
C. Masloch 2022-05-26 21:52:58 +02:00 committed by E. C. Masloch
parent 6d1ee95e10
commit 04353fe9e4

View File

@ -14,4 +14,17 @@ fi
echo GCC and Watcom kernels have all been built
find _output -ls
cd test
if ! ./test.sh ../_output/gcc/KGC${KVER}.sys diskgc bootgc 'boot gcc: '
then
echo GCC boot test failed
exit 2
fi
if ! ./test.sh ../_output/wc/KWC${KVER}.sys diskwc bootwc 'boot wc: '
then
echo OpenWatcom boot test failed
exit 2
fi
cd ..
exit 0