# HG changeset patch # User Tassilo Philipp # Date 1642437321 -3600 # Node ID 1cb8a65ea27f9d39a053c219b011b29203160a9b # Parent 8e22b70d3ee46d5a0f3695f9a4b0616bec3d1188 - test/call_suite: made seed configurable diff -r 8e22b70d3ee4 -r 1cb8a65ea27f test/call_suite/config.lua --- a/test/call_suite/config.lua Mon Jan 17 15:46:38 2022 +0100 +++ b/test/call_suite/config.lua Mon Jan 17 17:35:21 2022 +0100 @@ -3,4 +3,5 @@ maxargs = 64 ncases = 400 types = "csijlpfd" +seed = 2342 diff -r 8e22b70d3ee4 -r 1cb8a65ea27f test/call_suite/rand-sig.lua --- a/test/call_suite/rand-sig.lua Mon Jan 17 15:46:38 2022 +0100 +++ b/test/call_suite/rand-sig.lua Mon Jan 17 17:35:21 2022 +0100 @@ -2,8 +2,7 @@ rtypes = "v"..types -math.randomseed(2342) -local sigs = { } +math.randomseed(seed) local id for i = 1, ncases do id = math.random(#rtypes)