summaryrefslogtreecommitdiff
path: root/tests/Makefile.W32
blob: bffd8173a1043e9b53264cd25da237f182b4a535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
TOPDIR = ..

SUBDIRS =

INCLUDE_DIRS = \
	/I$(TOPDIR)\include /I. \
	/I$(TOPDIR)\sqlite-$(SQLITE_VERSION) \
	/D_WIN32_WINNT=0x400 /I"$(PLATFORM_SDK_DIR)\Include"

INCLUDE_LDFLAGS = \
	/LIBPATH:"$(PLATFORM_SDK_DIR)\lib"

INCLUDE_LIBS = \
	$(TOPDIR)\src\sqlite3xx.lib \
	$(TOPDIR)\sqlite-$(SQLITE_VERSION)\sqlite3.lib

TEST_CPP_BINS = \
	test1.exe \
	test2.exe \
	test3.exe \
	test4.exe \
	test5.exe \
	test6.exe \
	test7.exe \
	test8.exe \
	test9.exe

TEST_BINS = \
	testc.exe

OBJS = \
	threads.obj

!INCLUDE $(TOPDIR)\makefiles\nmake\sub.mk

# temporary
testc.exe: testc.obj
test1.exe: test1.obj
test2.exe: test2.obj
test3.exe: test3.obj
test4.exe: test4.obj
test5.exe: test5.obj
test6.exe: test6.obj
test7.exe: test7.obj
test8.exe: test8.obj
test9.exe: test9.obj threads.obj

local_all:

local_clean:
	@-erase *.db *.db-journal 2>NUL
	@-erase *.RES *.DIFF 2>NUL

local_distclean:

# disabled tests
#-@./exec_test test6 "STL iterators" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
#-@./exec_test test7 "tracing" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"

# create the must files with ./test2 | sed 's/\(time:[^\)]*\)//g' > test2.MUST
# to eliminate the execution time..
local_test: $(CPP_BINS) $(BINS)
	@exec_test.cmd testc "test plain old C API" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test1 "create and close database" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test2 "create simple table, insert some data, query it" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test3 "prepared statements with parameter binding" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test4 "type conversion of bind parameters" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test5 "PRAGMAs outside a transaction" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test8 "ticket #14: to conversion fails with SQLITE_NULL" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"
	@exec_test.cmd test9 "ticket #5: support in mult-threaded enironment" "$(PLATFORM)" "$(LINUX_DIST)" "$(LINUX_REV)"