mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-07-19 09:16:29 +00:00
Removed LTP tests and the stress test group as hey weren't run via rtf. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
32 lines
335 B
Bash
32 lines
335 B
Bash
#!/bin/sh
|
|
# SUMMARY: Kernel tests
|
|
# LABELS:
|
|
|
|
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
|
|
|