quick.test 826 B

123456789101112131415161718192021222324252627282930313233
  1. # 2001 September 15
  2. #
  3. # The author disclaims copyright to this source code. In place of
  4. # a legal notice, here is a blessing:
  5. #
  6. # May you do good and not evil.
  7. # May you find forgiveness for yourself and forgive others.
  8. # May you share freely, never taking more than you give.
  9. #
  10. #***********************************************************************
  11. # This file runs all tests.
  12. #
  13. # $Id: quick.test,v 1.2 2001/10/22 02:58:11 drh Exp $
  14. set testdir [file dirname $argv0]
  15. source $testdir/tester.tcl
  16. rename finish_test really_finish_test
  17. proc finish_test {} {}
  18. set EXCLUDE {
  19. all.test
  20. quick.test
  21. btree2.test
  22. malloc.test
  23. }
  24. foreach testfile [lsort -dictionary [glob $testdir/*.test]] {
  25. set tail [file tail $testfile]
  26. if {[lsearch -exact $EXCLUDE $tail]>=0} continue
  27. source $testfile
  28. }
  29. really_finish_test