Files
linuxkit/test/pkg/kernel-config/check.sh
Justin Cormack 90a5cad216 Add filesystem tests into kernel test and fix failure cases
Make sure we do not remove filesystems we expect to have.

Fix the failure cases for the kernel tests which were not working properly
due to shell code.

Fix some 4.11 kernel changes in config that show up once tests are fixed.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-06-12 17:25:25 +02:00

12 lines
194 B
Bash
Executable File

#!/bin/sh
function failed {
printf "Kernel config test suite FAILED\n"
exit 1
}
/check-kernel-config.sh || failed
bash /check-config.sh || failed
printf "Kernel config test suite PASSED\n"