/usr/share/cgmanager/tests/test23.sh is in cgmanager-tests 0.39-2ubuntu5.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 | #!/bin/bash
echo "Test 23: listcontrollers"
for x in `cgm listcontrollers`; do
if ! grep -q $x /proc/self/cgroup; then
echo "Bad controller: $x"
exit 1
fi
done
echo PASS
|