mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-02 11:46:10 +00:00
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>
12 lines
194 B
Bash
Executable File
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"
|