mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-07 02:27:34 +00:00
Now that these are the only namespace tests, there is no need to have them in their own subgroup. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@gmail.com>
32 lines
348 B
Bash
32 lines
348 B
Bash
#!/bin/sh
|
|
# SUMMARY: Kernel tests
|
|
# LABELS: kernel-extra
|
|
|
|
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
|
|
|