Finish refactoring of DomCodeToUsLayoutKeyboardCode().
[chromium-blink-merge.git] / third_party / sqlite / sqlite-src-3080704 / test / win32heap.test
blobb92f8040e6e5377b905ca5e8144166a17fdfabc2
1 # 2013 November 22
3 # The author disclaims copyright to this source code.  In place of
4 # a legal notice, here is a blessing:
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.
10 #***********************************************************************
11 # This file implements regression tests for SQLite library.  The
12 # focus of this script is recovery from transient manditory locks
13 # that sometimes appear on database files due to anti-virus software.
16 if {$tcl_platform(platform)!="windows"} return
18 set testdir [file dirname $argv0]
19 source $testdir/tester.tcl
21 ifcapable !win32malloc {
22   finish_test
23   return
26 set testprefix win32heap
28 do_test 1.1 {
29   catch {db close}
30   sqlite3_shutdown
31   sqlite3_config_heap_size 1048576
32   sqlite3_initialize
33 } {SQLITE_OK}
35 do_test 1.2 {
36   sqlite3 db test.db
37   catchsql {
38     CREATE TABLE t1(x);
39   }
40 } {0 {}}
42 do_test 1.3 {
43   catchsql {
44     INSERT INTO t1 (x) VALUES(RANDOMBLOB(1048576));
45   }
46 } {1 {out of memory}}
48 do_test 1.4 {
49   catchsql {
50     SELECT COUNT(*) FROM t1;
51   }
52 } {0 0}
54 do_test 1.5 {
55   catch {db close}
56   sqlite3_shutdown
57   sqlite3_config_heap_size 0
58   sqlite3_initialize
59 } {SQLITE_OK}
61 do_test 1.6 {
62   sqlite3 db test.db
63   catchsql {
64     INSERT INTO t1 (x) VALUES(RANDOMBLOB(1048576));
65   }
66 } {0 {}}
68 do_test 1.7 {
69   catchsql {
70     SELECT COUNT(*) FROM t1;
71   }
72 } {0 1}
74 finish_test