Added fuzz test attribute
This acts as a marker to indicate a fuzz test. It should reference a define, usually SEED, that can be randomized to get interesting test permutations. This is currently unused, but could lead to some interesting uses such as time-based fuzz testing. It's also just useful for inspecting the tests (make test-list).
This commit is contained in:
@@ -1341,6 +1341,7 @@ defines.N = [1, 2, 4, 8, 16, 32, 64, 128, 256]
|
||||
defines.OPS = '2*N'
|
||||
defines.PARENT = [false, true]
|
||||
defines.SEED = 'range(20)'
|
||||
fuzz = 'SEED'
|
||||
# limit powerloss testing due to time
|
||||
if = '!TEST_PLS || N <= 8'
|
||||
reentrant = true
|
||||
@@ -4128,6 +4129,7 @@ defines.N = [1, 2, 4, 8, 16, 32, 64, 128, 256]
|
||||
defines.OPS = '2*N'
|
||||
defines.PARENT = [false, true]
|
||||
defines.SEED = 'range(20)'
|
||||
fuzz = 'SEED'
|
||||
# limit powerloss testing due to time
|
||||
if = '!TEST_PLS || N <= 8'
|
||||
reentrant = true
|
||||
@@ -6639,6 +6641,7 @@ defines.N = [1, 2, 4, 8, 16, 32, 64, 128, 256]
|
||||
defines.OPS = '2*N'
|
||||
defines.PARENT = [false, true]
|
||||
defines.SEED = 'range(20)'
|
||||
fuzz = 'SEED'
|
||||
# limit powerloss testing due to time
|
||||
if = '!TEST_PLS || N <= 8'
|
||||
reentrant = true
|
||||
@@ -6790,6 +6793,7 @@ defines.N = [1, 2, 4, 8, 16, 32, 64, 128, 256]
|
||||
defines.OPS = '2*N'
|
||||
defines.PARENT = [false, true]
|
||||
defines.SEED = 'range(20)'
|
||||
fuzz = 'SEED'
|
||||
# limit powerloss testing due to time
|
||||
if = '!TEST_PLS || N <= 8'
|
||||
reentrant = true
|
||||
|
||||
Reference in New Issue
Block a user