os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/all.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2001 September 15
sl@0
     2
#
sl@0
     3
# Portions Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiaries. All rights reserved.
sl@0
     4
#
sl@0
     5
# The author disclaims copyright to this source code.  In place of
sl@0
     6
# a legal notice, here is a blessing:
sl@0
     7
#
sl@0
     8
#    May you do good and not evil.
sl@0
     9
#    May you find forgiveness for yourself and forgive others.
sl@0
    10
#    May you share freely, never taking more than you give.
sl@0
    11
#
sl@0
    12
#***********************************************************************
sl@0
    13
# This file runs all tests.
sl@0
    14
#
sl@0
    15
# $Id: all.test,v 1.58 2008/09/09 18:28:07 danielk1977 Exp $
sl@0
    16
sl@0
    17
set testdir [file dirname $argv0]
sl@0
    18
source $testdir/tester.tcl
sl@0
    19
rename finish_test really_finish_test
sl@0
    20
proc finish_test {} {
sl@0
    21
  # no-op
sl@0
    22
}
sl@0
    23
sl@0
    24
# Symbian: the ISQUICK value is set to 1. The number of the running tests is reduced.
sl@0
    25
set ISQUICK 1
sl@0
    26
sl@0
    27
# Symbian: the COUNT value (the number of test runs) changed from 3 to 1. 
sl@0
    28
if {[file exists ./sqlite_test_count]} {
sl@0
    29
  set COUNT [exec cat ./sqlite_test_count]
sl@0
    30
} else {
sl@0
    31
  set COUNT 1
sl@0
    32
}
sl@0
    33
sl@0
    34
if {[llength $argv]>0} {
sl@0
    35
  foreach {name value} $argv {
sl@0
    36
    switch -- $name {
sl@0
    37
      -count {
sl@0
    38
         set COUNT $value
sl@0
    39
      }
sl@0
    40
      -quick {
sl@0
    41
         set ISQUICK $value
sl@0
    42
      }
sl@0
    43
      -soak {
sl@0
    44
         set SOAKTEST $value
sl@0
    45
      }
sl@0
    46
      default {
sl@0
    47
         puts stderr "Unknown option: $name"
sl@0
    48
         exit
sl@0
    49
      }
sl@0
    50
    }
sl@0
    51
  }
sl@0
    52
}
sl@0
    53
set argv {}
sl@0
    54
sl@0
    55
# LeakList will hold a list of the number of unfreed mallocs after
sl@0
    56
# each round of the test.  This number should be constant.  If it
sl@0
    57
# grows, it may mean there is a memory leak in the library.
sl@0
    58
#
sl@0
    59
set LeakList {}
sl@0
    60
sl@0
    61
set EXCLUDE {}
sl@0
    62
lappend EXCLUDE all.test               ;# This file
sl@0
    63
lappend EXCLUDE async.test
sl@0
    64
lappend EXCLUDE crash.test             ;# Run seperately later.
sl@0
    65
lappend EXCLUDE crash2.test            ;# Run seperately later.
sl@0
    66
lappend EXCLUDE fuzz_malloc.test       ;# Symbian: the test crashes the test executable.
sl@0
    67
lappend EXCLUDE quick.test             ;# Alternate test driver script
sl@0
    68
lappend EXCLUDE veryquick.test         ;# Alternate test driver script
sl@0
    69
lappend EXCLUDE malloc.test            ;# Run seperately later.
sl@0
    70
lappend EXCLUDE misuse.test            ;# Run seperately later.
sl@0
    71
lappend EXCLUDE memleak.test           ;# Alternate test driver script
sl@0
    72
lappend EXCLUDE permutations.test      ;# Run seperately later.
sl@0
    73
lappend EXCLUDE rtree.test             ;# Excluded, because the Symbian SQLite port does not use the R-Tree module.
sl@0
    74
lappend EXCLUDE fuzz.test
sl@0
    75
lappend EXCLUDE fuzz3.test
sl@0
    76
lappend EXCLUDE soak.test              ;# Takes a very long time (default 1 hr)
sl@0
    77
lappend EXCLUDE fts3.test              ;# Wrapper for muliple fts3*.tests
sl@0
    78
lappend EXCLUDE mallocall.test         ;# Wrapper for running all malloc tests
sl@0
    79
lappend EXCLUDE speed1.test			   ;# Symbian OS: Excluding all "speed" tests, the first one is crashing all.test.
sl@0
    80
lappend EXCLUDE speed1p.test		   ;# Also, these "speed" tests are not that useful for Symbian OS.
sl@0
    81
lappend EXCLUDE speed2.test
sl@0
    82
lappend EXCLUDE speed3.test
sl@0
    83
lappend EXCLUDE speed4.test
sl@0
    84
lappend EXCLUDE speed4p.test
sl@0
    85
sl@0
    86
# Files to include in the test.  If this list is empty then everything
sl@0
    87
# that is not in the EXCLUDE list is run.
sl@0
    88
#
sl@0
    89
set INCLUDE {
sl@0
    90
}
sl@0
    91
sl@0
    92
for {set Counter 0} {$Counter<$COUNT && $nErr==0} {incr Counter} {
sl@0
    93
  if {$Counter%2} {
sl@0
    94
    set ::SETUP_SQL {PRAGMA default_synchronous=off;}
sl@0
    95
  } else {
sl@0
    96
    catch {unset ::SETUP_SQL}
sl@0
    97
  }
sl@0
    98
  foreach testfile [lsort -dictionary [glob $testdir/*.test]] {
sl@0
    99
    #Symbian OS: tail is overwritten in misc5.test, so use a new var tname for it here.
sl@0
   100
    set tname [file tail $testfile]
sl@0
   101
    if {[lsearch -exact $EXCLUDE $tname]>=0} continue
sl@0
   102
    if {[llength $INCLUDE]>0 && [lsearch -exact $INCLUDE $tname]<0} continue
sl@0
   103
    print_text "" $tname
sl@0
   104
    start_case $tname
sl@0
   105
    reset_prng_state
sl@0
   106
    source $testfile
sl@0
   107
    catch {db close}
sl@0
   108
    if {$sqlite_open_file_count>0} {
sl@0
   109
      puts "$tname did not close all files: $sqlite_open_file_count"
sl@0
   110
      # Symbian OS: Set and increase error count with do_fail procedure (definition in Tester.tcl)
sl@0
   111
      do_fail $tname 
sl@0
   112
      set sqlite_open_file_count 0
sl@0
   113
    }
sl@0
   114
    end_case $tname
sl@0
   115
  }
sl@0
   116
  if {[info exists Leak]} {
sl@0
   117
    lappend LeakList $Leak
sl@0
   118
  }
sl@0
   119
}
sl@0
   120
sl@0
   121
# Symbian OS: permutation tests disabled. The permutation tests are not that important, because the SQLite port is offered with hard-coded config settings.
sl@0
   122
if {$::tcl_platform(platform)!="symbian"} {
sl@0
   123
  set argv all
sl@0
   124
  source $testdir/permutations.test
sl@0
   125
  set argv ""
sl@0
   126
}
sl@0
   127
sl@0
   128
# Do one last test to look for a memory leak in the library.  This will
sl@0
   129
# only work if SQLite is compiled with the -DSQLITE_DEBUG=1 flag.
sl@0
   130
#
sl@0
   131
if {$LeakList!=""} {
sl@0
   132
  puts -nonewline memory-leak-test...
sl@0
   133
  incr ::nTest
sl@0
   134
  foreach x $LeakList {
sl@0
   135
    if {$x!=[lindex $LeakList 0]} {
sl@0
   136
       puts " failed!"
sl@0
   137
       puts "Expected: all values to be the same"
sl@0
   138
       puts "     Got: $LeakList"
sl@0
   139
       # Symbian OS: Set and increase error count with do_fail procedure (definition in Tester.tcl)
sl@0
   140
       do_fail memory-leak-test 
sl@0
   141
       break
sl@0
   142
    }
sl@0
   143
  }
sl@0
   144
  puts " Ok"
sl@0
   145
}
sl@0
   146
sl@0
   147
# Run the crashtest only on unix and only once. If the library does not
sl@0
   148
# always create auto-vacuum databases, also run autovacuum_crash.test.
sl@0
   149
#
sl@0
   150
if {$::tcl_platform(platform)=="unix"} {
sl@0
   151
  source $testdir/crash.test
sl@0
   152
  source $testdir/crash2.test
sl@0
   153
  ifcapable !default_autovacuum {
sl@0
   154
    set argv autovacuum_crash
sl@0
   155
    source $testdir/permutations.test
sl@0
   156
    set argv ""
sl@0
   157
  }
sl@0
   158
}
sl@0
   159
sl@0
   160
# Run the malloc tests and the misuse test after memory leak detection.
sl@0
   161
# Both tests leak memory. Currently, misuse.test also leaks a handful of
sl@0
   162
# file descriptors. This is not considered a problem, but can cause tests
sl@0
   163
# in malloc.test to fail. So set the open-file count to zero before running
sl@0
   164
# malloc.test to get around this.
sl@0
   165
#
sl@0
   166
# Symbian OS: misuse/malloc tests disabled
sl@0
   167
if {$::tcl_platform(platform)!="symbian"} {
sl@0
   168
  catch {source $testdir/misuse.test}
sl@0
   169
  set sqlite_open_file_count 0
sl@0
   170
  catch {source $testdir/malloc.test}
sl@0
   171
}
sl@0
   172
catch {db close}
sl@0
   173
set sqlite_open_file_count 0
sl@0
   174
really_finish_test