TF_RUN 361B

123456789101112131415161718192021
  1. #!/bin/bash
  2. . "$TF_DIR/include/subtest.sh"
  3. . "$TF_DIR/include/tools.sh"
  4. tf_enum_subtests() {
  5. echo usage
  6. }
  7. tf_name2cmd() {
  8. local name=$1
  9. local cmd
  10. local o_err="oracle/$name.stderr"
  11. local o_es=0
  12. case $name in
  13. usage) cmd="satcmd"; o_es=2 ;;
  14. esac
  15. echo "tf_testflt -n $name -E $o_err -S $o_es $cmd"
  16. }
  17. tf_do_subtests