blob: 4db4b81d9865077f19dc671ef22726c4a58414d0 (
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
|
# List of regression test programs.
#
# This is in a separate file so that it can be included by both the Unix
# Makefile, and Windows nmake file, win.mak. Note that the format of this
# file must be acceptable to both, so don't add anything fancy here. That's
# also why we list program names here, in format exe/<testname>-test, rather
# than the base test names: nmake makes it difficult to add a prefix or suffix
# to each name in a list, but it's easy to strip them away.
TESTBINS = exe/connect-test \
exe/stmthandles-test \
exe/select-test \
exe/update-test \
exe/commands-test \
exe/multistmt-test \
exe/getresult-test \
exe/colattribute-test \
exe/result-conversions-test \
exe/prepare-test \
exe/premature-test \
exe/params-test \
exe/param-conversions-test \
exe/parse-test \
exe/identity-test \
exe/notice-test \
exe/arraybinding-test \
exe/insertreturning-test \
exe/dataatexecution-test \
exe/boolsaschar-test \
exe/cvtnulldate-test \
exe/alter-test \
exe/quotes-test \
exe/cursors-test \
exe/cursor-movement-test \
exe/cursor-commit-test \
exe/cursor-name-test \
exe/cursor-block-delete-test \
exe/bookmark-test \
exe/declare-fetch-commit-test \
exe/declare-fetch-block-test \
exe/positioned-update-test \
exe/bulkoperations-test \
exe/catalogfunctions-test \
exe/bindcol-test \
exe/lfconversion-test \
exe/cte-test \
exe/errors-test \
exe/error-rollback-test \
exe/diagnostic-test \
exe/numeric-test \
exe/large-object-test \
exe/large-object-data-at-exec-test \
exe/odbc-escapes-test \
exe/wchar-char-test \
exe/params-batch-exec-test \
exe/fetch-refcursors-test \
exe/descrec-test
|