sl@0
|
1 |
// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// SQLite C API test application (used to run the TCL test suite)
|
sl@0
|
15 |
// The "buildrom" command (uncomment before that the line in sqlite3tests.iby file that copies "1020383e.txt" file):
|
sl@0
|
16 |
// buildrom -D_SERIAL_DOWNLOAD -DRVCT -D_EABI=ARMV5 -fm=/epoc32/rom/include/featuredatabase.xml h4hrp.oby textshell.oby sqlite3.iby sqlite3tests.iby openenv.iby bluetooth.iby ups.iby timezonelocalization.iby -orombld.img
|
sl@0
|
17 |
//
|
sl@0
|
18 |
//
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@file
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#include "tclsqlite3_macro.mmh"
|
sl@0
|
25 |
|
sl@0
|
26 |
TARGET tclsqlite3.exe
|
sl@0
|
27 |
TARGETTYPE EXE
|
sl@0
|
28 |
|
sl@0
|
29 |
CAPABILITY All -Tcb
|
sl@0
|
30 |
|
sl@0
|
31 |
UID 0x20004C45 0x10285A82
|
sl@0
|
32 |
|
sl@0
|
33 |
VENDORID 0x70000001
|
sl@0
|
34 |
|
sl@0
|
35 |
SMPSAFE
|
sl@0
|
36 |
|
sl@0
|
37 |
EPOCSTACKSIZE 81920 //max 80kb
|
sl@0
|
38 |
EPOCHEAPSIZE 0x00100000 0x02000000
|
sl@0
|
39 |
|
sl@0
|
40 |
// Need this otherwise get a lot of mismatched IMPORT_C/EXPORT_C even though this is an exe
|
sl@0
|
41 |
MACRO SQLITE_DLL
|
sl@0
|
42 |
|
sl@0
|
43 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
44 |
///////////////// RVCT compiler warning & optimization options /////////////////////////////////////////
|
sl@0
|
45 |
|
sl@0
|
46 |
//550: <entity-kind> "entity" was set but never used
|
sl@0
|
47 |
//C2874W: <name> may be used before being set
|
sl@0
|
48 |
//368: <entity-kind> "<entity>" defines no constructor to initialize the following:
|
sl@0
|
49 |
//177-D: variable <name> was declared but never referenced
|
sl@0
|
50 |
//1293-D: assignment in condition
|
sl@0
|
51 |
//C3017W: <name> may be used before being set
|
sl@0
|
52 |
//61: integer operation result is out of range
|
sl@0
|
53 |
|
sl@0
|
54 |
OPTION ARMCC --diag_suppress 550,2874,368,177,1293,3017,61
|
sl@0
|
55 |
OPTION ARMCC -Ono_cg_cond
|
sl@0
|
56 |
|
sl@0
|
57 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
58 |
///////////////// CW compiler warning options //////////////////////////////////////////////////////////
|
sl@0
|
59 |
|
sl@0
|
60 |
//Variable/argument <x> is not used in function
|
sl@0
|
61 |
//Possible unwanted <x>
|
sl@0
|
62 |
|
sl@0
|
63 |
OPTION CW -w nounused -w nounwanted
|
sl@0
|
64 |
|
sl@0
|
65 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
66 |
///////////////// GCC compiler warning options /////////////////////////////////////////////////////////
|
sl@0
|
67 |
|
sl@0
|
68 |
//"-w" option suppresses all warnings!
|
sl@0
|
69 |
//"<variable> might be used uninitialized in this function" - only this warning needs to be suppressed,
|
sl@0
|
70 |
//but there is no option for that.
|
sl@0
|
71 |
|
sl@0
|
72 |
OPTION GCC -w
|
sl@0
|
73 |
|
sl@0
|
74 |
//////////////////////////////////////////////////////////////////////////////////////////////////////////
|
sl@0
|
75 |
|
sl@0
|
76 |
USERINCLUDE ../traces_sqlite3
|
sl@0
|
77 |
USERINCLUDE ../SQLite
|
sl@0
|
78 |
USERINCLUDE ../OsLayer
|
sl@0
|
79 |
OS_LAYER_LIBC_SYSTEMINCLUDE
|
sl@0
|
80 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
|
sl@0
|
81 |
USERINCLUDE ../TEST/TCL/tcldistribution/generic
|
sl@0
|
82 |
|
sl@0
|
83 |
SOURCEPATH ../SQLite
|
sl@0
|
84 |
SOURCE alter.c
|
sl@0
|
85 |
SOURCE analyze.c
|
sl@0
|
86 |
SOURCE attach.c
|
sl@0
|
87 |
SOURCE auth.c
|
sl@0
|
88 |
SOURCE bitvec.c
|
sl@0
|
89 |
SOURCE btree.c
|
sl@0
|
90 |
SOURCE btmutex.c
|
sl@0
|
91 |
SOURCE build.c
|
sl@0
|
92 |
SOURCE callback.c
|
sl@0
|
93 |
SOURCE complete.c
|
sl@0
|
94 |
SOURCE date.c
|
sl@0
|
95 |
SOURCE delete.c
|
sl@0
|
96 |
SOURCE expr.c
|
sl@0
|
97 |
SOURCE fault.c
|
sl@0
|
98 |
SOURCE func.c
|
sl@0
|
99 |
SOURCE global.c
|
sl@0
|
100 |
SOURCE hash.c
|
sl@0
|
101 |
SOURCE insert.c
|
sl@0
|
102 |
SOURCE journal.c
|
sl@0
|
103 |
SOURCE legacy.c
|
sl@0
|
104 |
SOURCE loadext.c
|
sl@0
|
105 |
SOURCE main.c
|
sl@0
|
106 |
SOURCE malloc.c
|
sl@0
|
107 |
SOURCE mem1.c
|
sl@0
|
108 |
SOURCE mem2.c
|
sl@0
|
109 |
SOURCE mem3.c
|
sl@0
|
110 |
SOURCE mem4.c
|
sl@0
|
111 |
SOURCE mem5.c
|
sl@0
|
112 |
SOURCE mem6.c
|
sl@0
|
113 |
SOURCE mutex.c
|
sl@0
|
114 |
SOURCE opcodes.c
|
sl@0
|
115 |
SOURCE os.c
|
sl@0
|
116 |
SOURCE pager.c
|
sl@0
|
117 |
SOURCE parse.c
|
sl@0
|
118 |
SOURCE pcache.c
|
sl@0
|
119 |
SOURCE pragma.c
|
sl@0
|
120 |
SOURCE prepare.c
|
sl@0
|
121 |
SOURCE printf.c
|
sl@0
|
122 |
SOURCE random.c
|
sl@0
|
123 |
SOURCE resolve.c
|
sl@0
|
124 |
SOURCE select.c
|
sl@0
|
125 |
SOURCE status.c
|
sl@0
|
126 |
SOURCE table.c
|
sl@0
|
127 |
SOURCE tokenize.c
|
sl@0
|
128 |
SOURCE trigger.c
|
sl@0
|
129 |
SOURCE update.c
|
sl@0
|
130 |
SOURCE utf.c
|
sl@0
|
131 |
SOURCE util.c
|
sl@0
|
132 |
SOURCE vacuum.c
|
sl@0
|
133 |
SOURCE vdbe.c
|
sl@0
|
134 |
SOURCE vdbeapi.c
|
sl@0
|
135 |
SOURCE vdbeaux.c
|
sl@0
|
136 |
SOURCE vdbeblob.c
|
sl@0
|
137 |
SOURCE vdbefifo.c
|
sl@0
|
138 |
SOURCE vdbemem.c
|
sl@0
|
139 |
SOURCE vtab.c
|
sl@0
|
140 |
SOURCE walker.c
|
sl@0
|
141 |
SOURCE where.c
|
sl@0
|
142 |
|
sl@0
|
143 |
SOURCEPATH ../TEST/SRC
|
sl@0
|
144 |
SOURCE tclsqlite.c
|
sl@0
|
145 |
SOURCE test1.c
|
sl@0
|
146 |
SOURCE test2.c
|
sl@0
|
147 |
SOURCE test3.c
|
sl@0
|
148 |
SOURCE test4.c
|
sl@0
|
149 |
SOURCE test5.c
|
sl@0
|
150 |
SOURCE test6.c
|
sl@0
|
151 |
SOURCE test7.c
|
sl@0
|
152 |
SOURCE test8.c
|
sl@0
|
153 |
SOURCE test9.c
|
sl@0
|
154 |
SOURCE test_async.c
|
sl@0
|
155 |
SOURCE test_autoext.c
|
sl@0
|
156 |
SOURCE test_btree.c
|
sl@0
|
157 |
SOURCE test_config.c
|
sl@0
|
158 |
SOURCE test_devsym.c
|
sl@0
|
159 |
SOURCE test_func.c
|
sl@0
|
160 |
SOURCE test_hexio.c
|
sl@0
|
161 |
SOURCE test_loadext.c
|
sl@0
|
162 |
SOURCE test_md5.c
|
sl@0
|
163 |
SOURCE test_malloc.c
|
sl@0
|
164 |
SOURCE test_mutex.c
|
sl@0
|
165 |
SOURCE test_onefile.c
|
sl@0
|
166 |
SOURCE test_osinst.c
|
sl@0
|
167 |
SOURCE test_schema.c
|
sl@0
|
168 |
SOURCE test_server.c
|
sl@0
|
169 |
SOURCE test_tclvar.c
|
sl@0
|
170 |
SOURCE test_thread.c
|
sl@0
|
171 |
|
sl@0
|
172 |
SOURCEPATH ../OsLayer
|
sl@0
|
173 |
SOURCE FileBuf64.cpp
|
sl@0
|
174 |
SOURCE os_symbian_mt.cpp
|
sl@0
|
175 |
SOURCE SqliteUtil.cpp
|
sl@0
|
176 |
#ifdef WINSCW
|
sl@0
|
177 |
SOURCE os_symbian_emul.cpp
|
sl@0
|
178 |
#else
|
sl@0
|
179 |
SOURCE os_symbian_hrdw.cpp
|
sl@0
|
180 |
#endif
|
sl@0
|
181 |
SOURCE test_fileutil.cpp
|
sl@0
|
182 |
|
sl@0
|
183 |
LIBRARY euser.lib
|
sl@0
|
184 |
LIBRARY efsrv.lib
|
sl@0
|
185 |
LIBRARY estor.lib
|
sl@0
|
186 |
|
sl@0
|
187 |
STATICLIBRARY libcrt0.lib
|
sl@0
|
188 |
LIBRARY libc.lib
|
sl@0
|
189 |
LIBRARY libpthread.lib
|
sl@0
|
190 |
LIBRARY libm.lib
|
sl@0
|
191 |
LIBRARY libdl.lib
|
sl@0
|
192 |
STATICLIBRARY tcl.lib
|
sl@0
|
193 |
#ifdef WINSCW
|
sl@0
|
194 |
LIBRARY ewsd.lib
|
sl@0
|
195 |
#endif
|