1#!/usr/bin/env bash 2set -e 3 4TEST_DESCRIPTION="test ExitType=cgroup" 5 6# shellcheck source=test/test-functions 7. "${TEST_BASE_DIR:?}/test-functions" 8 9if [[ "$(get_cgroup_hierarchy)" != unified ]]; then 10 echo "This test requires unified cgroup hierarchy, skipping..." 11 exit 0 12fi 13 14do_test "$@" 15