create-test-result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #! /bin/sh
  2. # This script is a hack for lazy developers who want to get a quick
  3. # start on the result file. The code here is rather dirty, but it works
  4. # If you have a spare moment feel free to improve it - the right way is
  5. # to start mysqld yourself and run mysqltest -r
  6. RESULT_DIR=r
  7. if [ -z $EDITOR] ; then
  8.  EDITOR=vi
  9. fi
  10. function die()
  11. {
  12.   echo $1
  13.   exit 1
  14. }
  15. function usage()
  16. {
  17.   echo "Usage: $0 test_name"
  18.   exit 1
  19. }
  20. test_name=$1
  21. [ -z $test_name ] && usage
  22. result_file=$RESULT_DIR/$test_name.result
  23. reject_file=$RESULT_DIR/$test_name.reject
  24. [ -f $result_file ] && die "result file $result_file  has already been created"
  25. touch $result_file
  26. echo "Running the test case against empty file, will fail, but don't worry"
  27. ./mysql-test-run --local $test_name
  28. if [ -f $reject_file ] ; then
  29.   echo "Below are the contents of the reject file:"
  30.   echo "-----start---------------------"
  31.   cat $reject_file
  32.   echo "-----end-----------------------"
  33.   echo "Is this the output you expected from your test case?(y/n)[n]"
  34.   read yes_no
  35.   if [ x$yes_no = xy ] ; then
  36.     echo "Press any key to edit it in $EDITOR, or Ctrl-C to abort"
  37.     read junk
  38.     $EDITOR $reject_file
  39.     edited="edited"
  40.   fi
  41.   echo "Save $edited file as master result? (y/n)[y]"
  42.   read yes_no
  43.   if [ x$yes_no != xn ]; then
  44.       mv $reject_file $result_file
  45.   fi
  46. else
  47.   echo "Your test failed so bad, it did not even produce a reject file"
  48.   echo "You need to fix your bugs in the test case, the code, or both"
  49.   exit 1
  50. fi