checkresults
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:0k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #!/bin/sh
  2. # check regression tests
  3. # usage:  checkresults [ regress.out ]
  4. [ "$#" -eq 0 ] && set regress.out
  5. for file in `cat "$@" | grep 'failed$' | cut -d " " -f 1`
  6. do
  7. echo "======   $file   ======"
  8. diff -w expected/$file.out results
  9. done