comparison test/callback_suite/config-random.lua @ 0:3e629dc19168

initial from svn dyncall-1745
author Daniel Adler
date Thu, 19 Mar 2015 22:24:28 +0100
parents
children ca36937b4613
comparison
equal deleted inserted replaced
-1:000000000000 0:3e629dc19168
1 -- section 'main' --------------------------------------------------------------
2
3 nsigs = 300 -- number of test cases
4 mode = "random" -- generatore mode: 'random' or 'ordered' type sequences
5 minargs = 1 -- minimum num. of supported arguments (>= 0)
6 maxargs = 67 -- maximum num. of supported arguments (>= minargs)
7
8
9 -- section 'types' -------------------------------------------------------------
10
11 argtypes = "BcCsSiIjJlLpfd" -- supported argument types
12 rettypes = argtypes -- supported return types (currently no void support)
13
14
15 -- section 'ordered' -----------------------------------------------------------
16
17 offset = 0 -- permutation index offset (default = 0)
18 step = 1 -- permutation index increment (default = 1)
19
20
21 -- section 'random' ------------------------------------------------------------
22
23 seed = 1 -- random seed
24
25
26 -- section 'calling convention' (useful on Windows for now) --------------------
27
28 api = "" -- calling convention ("__stdcall" or "__fastcall")
29 -- for gcc use "__attribute__((__stdcall__))" or "__attribute__((__fastcall__))"
30 -- for ms ?
31 ccprefix = "" -- signature prefix ("_s" (stdcall), "_f" (gcc fastcall) or "_F" (microsoft fastcall))