| 123456789101112131415161718192021 | #!/bin/bash
. $TF_DIR/include/subtest.sh
. $TF_DIR/include/tools.sh
tf_enum_subtests() {
    echo usage
}
tf_name2cmd() {
    local name=$1
    local cmd
    local o_err="oracle/$name.stderr"
    local o_es=0
    case $name in
        usage)       cmd="saturnin"; o_es=2 ;;
    esac
    echo "tf_testflt -n $name -E $o_err -S $o_es $cmd"
}
tf_do_subtests
 |