mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-01-15 19:11:35 +00:00
This is a simple rename of directories to make more space in the test namespace for future kernels. Signed-off-by: Rolf Neugebauer <rn@rneugeba.io>
32 lines
342 B
Bash
32 lines
342 B
Bash
#!/bin/sh
|
|
# SUMMARY: Kernel tests
|
|
# LABELS: kernel
|
|
|
|
group_init() {
|
|
# Group initialisation code goes here
|
|
return 0
|
|
}
|
|
|
|
group_deinit() {
|
|
# Group de-initialisation code goes here
|
|
return 0
|
|
}
|
|
|
|
CMD=$1
|
|
case $CMD in
|
|
init)
|
|
group_init
|
|
res=$?
|
|
;;
|
|
deinit)
|
|
group_deinit
|
|
res=$?
|
|
;;
|
|
*)
|
|
res=1
|
|
;;
|
|
esac
|
|
|
|
exit $res
|
|
|