diff --git a/ci_test.sh b/ci_test.sh index 513a2c7..8e511a8 100755 --- a/ci_test.sh +++ b/ci_test.sh @@ -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