1#!/usr/bin/env bash
2
3set -eu
4
5TDIR="/usr/share/zfs/zfs-tests/tests/functional"
6echo -n "TODO="
7case "$1" in
8  part1)
9    # ~1h 20m
10    echo "cli_root"
11    ;;
12  part2)
13    # ~1h
14    ls $TDIR|grep '^[a-m]'|grep -v "cli_root"|xargs|tr -s ' ' ','
15    ;;
16  part3)
17    # ~1h
18    ls $TDIR|grep '^[n-qs-z]'|xargs|tr -s ' ' ','
19    ;;
20  part4)
21    # ~1h
22    ls $TDIR|grep '^r'|xargs|tr -s ' ' ','
23    ;;
24esac
25