From 04353fe9e4ea2c25bae2354eee43e302308193ee Mon Sep 17 00:00:00 2001 From: "C. Masloch" Date: Thu, 26 May 2022 21:52:58 +0200 Subject: [PATCH] ci_test: do simple boot tests --- ci_test.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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