comparison test/suite_aggrs/config.lua @ 462:653b65580cb4

suite_aggr: - added arrays (inside of structs/unions, only, as only way to pass/return them by value) - cleanups and pregen of source
author Tassilo Philipp
date Tue, 01 Feb 2022 21:44:18 +0100
parents 236015fdf7a8
children bd8f5da2c74b
comparison
equal deleted inserted replaced
461:236015fdf7a8 462:653b65580cb4
1 -- user config for rand-sig.lua: 1 -- user config for rand-sig.lua:
2 minargs = 0 2 minargs = 0
3 maxargs = 16 3 maxargs = 16
4 maxarraylen = 16 -- note some callconvs pass structs via regs, so using big numbers here will reduce those cases
5 arraydice = 40 -- how often to turn a member into an array (1 out of arraydice-times)
4 maxaggrdepth = 3 -- max nesting depth of aggregates, 1 = no nesting 6 maxaggrdepth = 3 -- max nesting depth of aggregates, 1 = no nesting
5 emptyaggrs = true -- whether to allow empty aggregates or not 7 emptyaggrs = true -- whether to allow empty aggregates or not
6 ncases = 400 8 ncases = 400
7 types = "csijlpfd{}<>" -- {...} for structs, <...> for unions 9 types = "csijlpfd{}<>" -- {...} for structs, <...> for unions
8 seed = 2112 10 seed = 2112