Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Side by Side Diff: third_party/sqlite/src/test/backup_malloc.test

Issue 694353003: Get `gn gen` to succeed on Windows (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: remove GYP_DEFINES code Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/sqlite/src/test/backup_ioerr.test ('k') | third_party/sqlite/src/test/badutf.test » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # 2009 January 30
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 implements regression tests for SQLite library. The
12 # focus of this file is testing the handling of OOM errors by the
13 # sqlite3_backup_XXX APIs.
14 #
15 # $Id: backup_malloc.test,v 1.2 2009/02/04 22:46:47 drh Exp $
16
17 set testdir [file dirname $argv0]
18 source $testdir/tester.tcl
19
20 source $testdir/malloc_common.tcl
21
22 do_malloc_test backup_malloc-1 -tclprep {
23 execsql {
24 PRAGMA cache_size = 10;
25 BEGIN;
26 CREATE TABLE t1(a, b);
27 INSERT INTO t1 VALUES(1, randstr(1000,1000));
28 INSERT INTO t1 SELECT a+ 1, randstr(1000,1000) FROM t1;
29 INSERT INTO t1 SELECT a+ 2, randstr(1000,1000) FROM t1;
30 INSERT INTO t1 SELECT a+ 4, randstr(1000,1000) FROM t1;
31 INSERT INTO t1 SELECT a+ 8, randstr(1000,1000) FROM t1;
32 INSERT INTO t1 SELECT a+16, randstr(1000,1000) FROM t1;
33 INSERT INTO t1 SELECT a+32, randstr(1000,1000) FROM t1;
34 INSERT INTO t1 SELECT a+64, randstr(1000,1000) FROM t1;
35 CREATE INDEX i1 ON t1(b);
36 COMMIT;
37 }
38 sqlite3 db2 test2.db
39 execsql { PRAGMA cache_size = 10 } db2
40 } -tclbody {
41
42 # Create a backup object.
43 #
44 set rc [catch {sqlite3_backup B db2 main db main}]
45 if {$rc && [sqlite3_errcode db2] == "SQLITE_NOMEM"} {
46 error "out of memory"
47 }
48
49 # Run the backup process some.
50 #
51 set rc [B step 50]
52 if {$rc == "SQLITE_NOMEM" || $rc == "SQLITE_IOERR_NOMEM"} {
53 error "out of memory"
54 }
55
56 # Update the database.
57 #
58 execsql { UPDATE t1 SET a = a + 1 }
59
60 # Finish doing the backup.
61 #
62 set rc [B step 5000]
63 if {$rc == "SQLITE_NOMEM" || $rc == "SQLITE_IOERR_NOMEM"} {
64 error "out of memory"
65 }
66
67 # Finalize the backup.
68 B finish
69 } -cleanup {
70 catch { B finish }
71 catch { db2 close }
72 }
73
74 do_malloc_test backup_malloc-2 -tclprep {
75 sqlite3 db2 test2.db
76 } -tclbody {
77 set rc [catch {sqlite3_backup B db2 temp db main}]
78 set errcode [sqlite3_errcode db2]
79 if {$rc && ($errcode == "SQLITE_NOMEM" || $errcode == "SQLITE_IOERR_NOMEM")} {
80 error "out of memory"
81 }
82 } -cleanup {
83 catch { B finish }
84 db2 close
85 }
86
87 finish_test
OLDNEW
« no previous file with comments | « third_party/sqlite/src/test/backup_ioerr.test ('k') | third_party/sqlite/src/test/badutf.test » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698