Skip to content

Commit 57e549b

Browse files
committed
all test code removed
1 parent e8491f5 commit 57e549b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+17968
-315
lines changed

sqlite-more-lite/bld/.libs/btree.o

215 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/btree_rb.o

83.2 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/build.o

144 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/date.o

72.5 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/delete.o

41.8 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/encode.o

5.98 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/expr.o

123 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/func.o

51.9 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/hash.o

27.4 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/insert.o

69.3 KB
Binary file not shown.
2.29 MB
Binary file not shown.
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../libsqlite.la
+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# libsqlite.la - a libtool library file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# The name that we can dlopen(3).
8+
dlname='libsqlite.so.0'
9+
10+
# Names of this library.
11+
library_names='libsqlite.so.0.8.6 libsqlite.so.0 libsqlite.so'
12+
13+
# The name of the static archive.
14+
old_library='libsqlite.a'
15+
16+
# Libraries that this one depends upon.
17+
dependency_libs=''
18+
19+
# Version information for libsqlite.
20+
current=8
21+
age=8
22+
revision=6
23+
24+
# Is this an already installed library?
25+
installed=yes
26+
27+
# Should we warn about portability when linking against -modules?
28+
shouldnotlink=no
29+
30+
# Files to dlopen/dlpreopen
31+
dlopen=''
32+
dlpreopen=''
33+
34+
# Directory that this library needs to be installed in:
35+
libdir='/usr/local/lib'
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libsqlite.so.0.8.6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
libsqlite.so.0.8.6
1.24 MB
Binary file not shown.

sqlite-more-lite/bld/.libs/main.o

84.1 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/opcodes.o

7.84 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/os.o

47.9 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/pager.o

102 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/parse.o

120 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/pragma.o

78.9 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/printf.o

61.4 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/random.o

8.48 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/select.o

223 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/sqlite

91.3 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/table.o

17.5 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/tokenize.o

46.1 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/trigger.o

66.8 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/update.o

42.4 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/util.o

54.8 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/vdbe.o

371 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/vdbeaux.o

82.4 KB
Binary file not shown.

sqlite-more-lite/bld/.libs/where.o

80.4 KB
Binary file not shown.

sqlite-more-lite/bld/Makefile

+2-42
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ SRC = \
124124
$(TOP)/src/sqlite.h.in \
125125
$(TOP)/src/sqliteInt.h \
126126
$(TOP)/src/table.c \
127-
$(TOP)/src/tclsqlite.c \
128127
$(TOP)/src/tokenize.c \
129128
$(TOP)/src/trigger.c \
130129
$(TOP)/src/update.c \
@@ -134,20 +133,6 @@ SRC = \
134133
$(TOP)/src/vdbe.h \
135134
$(TOP)/src/where.c
136135

137-
# Source code to the test files.
138-
#
139-
TESTSRC = \
140-
$(TOP)/src/btree.c \
141-
$(TOP)/src/func.c \
142-
$(TOP)/src/os.c \
143-
$(TOP)/src/pager.c \
144-
$(TOP)/src/test1.c \
145-
$(TOP)/src/test2.c \
146-
$(TOP)/src/test3.c \
147-
$(TOP)/src/test4.c \
148-
$(TOP)/src/vdbe.c \
149-
$(TOP)/src/md5.c
150-
151136
# Header files used by all library source files.
152137
#
153138
HDR = \
@@ -186,11 +171,6 @@ libsqlite.la: $(LIBOBJ)
186171
$(LTLINK) -o libsqlite.la $(LIBOBJ) ${RELEASE} -rpath ${prefix}/lib \
187172
-version-info "8:6:8"
188173

189-
libtclsqlite.la: tclsqlite.lo libsqlite.la
190-
$(LTLINK) -o libtclsqlite.la tclsqlite.lo \
191-
libsqlite.la $(LIBTCL) -rpath ${prefix}/lib/sqlite \
192-
-version-info "8:6:8"
193-
194174
sqlite: $(TOP)/src/shell.c libsqlite.la sqlite.h
195175
$(LTLINK) $(READLINE_FLAGS) -o sqlite $(TOP)/src/shell.c \
196176
libsqlite.la $(LIBREADLINE)
@@ -329,32 +309,12 @@ trigger.lo: $(TOP)/src/trigger.c $(HDR)
329309
update.lo: $(TOP)/src/update.c $(HDR)
330310
$(LTCOMPILE) -c $(TOP)/src/update.c
331311

332-
tclsqlite.lo: $(TOP)/src/tclsqlite.c $(HDR)
333-
$(LTCOMPILE) $(TCL_FLAGS) -c $(TOP)/src/tclsqlite.c
334-
335312
pragma.lo: $(TOP)/src/pragma.c $(HDR)
336313
$(LTCOMPILE) $(TCL_FLAGS) -c $(TOP)/src/pragma.c
337314

338315
printf.lo: $(TOP)/src/printf.c $(HDR)
339316
$(LTCOMPILE) $(TCL_FLAGS) -c $(TOP)/src/printf.c
340317

341-
tclsqlite-sh.lo: $(TOP)/src/tclsqlite.c $(HDR)
342-
$(LTCOMPILE) $(TCL_FLAGS) -DTCLSH=1 -o $@ -c $(TOP)/src/tclsqlite.c
343-
344-
tclsqlite: tclsqlite-sh.lo libsqlite.la
345-
$(LTLINK) $(TCL_FLAGS) -o tclsqlite tclsqlite-sh.lo libsqlite.la $(LIBTCL)
346-
347-
testfixture: $(TOP)/src/tclsqlite.c libtclsqlite.la libsqlite.la $(TESTSRC)
348-
$(LTLINK) $(TCL_FLAGS) -DTCLSH=1 -DSQLITE_TEST=1\
349-
-o testfixture $(TESTSRC) $(TOP)/src/tclsqlite.c \
350-
libtclsqlite.la libsqlite.la $(LIBTCL)
351-
352-
fulltest: testfixture sqlite
353-
./testfixture $(TOP)/test/all.test
354-
355-
test: testfixture sqlite
356-
./testfixture $(TOP)/test/quick.test
357-
358318
index.html: $(TOP)/www/index.tcl last_change
359319
tclsh $(TOP)/www/index.tcl `cat $(TOP)/VERSION` >index.html
360320

@@ -385,8 +345,8 @@ opcode.html: $(TOP)/www/opcode.tcl $(TOP)/src/vdbe.c
385345
mingw.html: $(TOP)/www/mingw.tcl
386346
tclsh $(TOP)/www/mingw.tcl >mingw.html
387347

388-
tclsqlite.html: $(TOP)/www/tclsqlite.tcl
389-
tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
348+
#tclsqlite.html: $(TOP)/www/tclsqlite.tcl
349+
# tclsh $(TOP)/www/tclsqlite.tcl >tclsqlite.html
390350

391351
speed.html: $(TOP)/www/speed.tcl
392352
tclsh $(TOP)/www/speed.tcl >speed.html

sqlite-more-lite/bld/btree.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# btree.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/btree.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='btree.o'
12+

sqlite-more-lite/bld/btree.o

205 KB
Binary file not shown.

sqlite-more-lite/bld/btree_rb.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# btree_rb.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/btree_rb.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='btree_rb.o'
12+

sqlite-more-lite/bld/btree_rb.o

81.7 KB
Binary file not shown.

sqlite-more-lite/bld/build.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# build.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/build.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='build.o'
12+

sqlite-more-lite/bld/build.o

143 KB
Binary file not shown.

sqlite-more-lite/bld/date.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# date.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/date.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='date.o'
12+

sqlite-more-lite/bld/date.o

73 KB
Binary file not shown.

sqlite-more-lite/bld/delete.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# delete.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/delete.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='delete.o'
12+

sqlite-more-lite/bld/delete.o

41.6 KB
Binary file not shown.

sqlite-more-lite/bld/encode.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# encode.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/encode.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='encode.o'
12+

sqlite-more-lite/bld/encode.o

5.88 KB
Binary file not shown.

sqlite-more-lite/bld/expr.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# expr.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/expr.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='expr.o'
12+

sqlite-more-lite/bld/expr.o

122 KB
Binary file not shown.

sqlite-more-lite/bld/func.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# func.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/func.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='func.o'
12+

sqlite-more-lite/bld/func.o

51.2 KB
Binary file not shown.

sqlite-more-lite/bld/hash.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# hash.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/hash.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='hash.o'
12+

sqlite-more-lite/bld/hash.o

27.1 KB
Binary file not shown.

sqlite-more-lite/bld/insert.lo

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# insert.lo - a libtool object file
2+
# Generated by ltmain.sh - GNU libtool 1.5.2 (1.1220.2.60 2004/01/25 12:25:08) Debian: 192 $
3+
#
4+
# Please DO NOT delete this file!
5+
# It is necessary for linking the library.
6+
7+
# Name of the PIC object.
8+
pic_object='.libs/insert.o'
9+
10+
# Name of the non-PIC object.
11+
non_pic_object='insert.o'
12+

sqlite-more-lite/bld/insert.o

68.8 KB
Binary file not shown.

sqlite-more-lite/bld/lemon

201 KB
Binary file not shown.

0 commit comments

Comments
 (0)