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