avalanche icon indicating copy to clipboard operation
avalanche copied to clipboard

Avalanche is a document generator which uses context-free grammars to generate randomized outputs for fuzz-testing.

Results 4 avalanche issues
Sort by recently updated
recently updated
newest added

Grammar files can get big and complicated and it is easy to over look issues. The best solution is to make avalanche check at run time for issues (ex. unused...

enhancement

To do multiple unique syms with a joining string, these patterns are possible: ``` (sym ' ') ``` This leaves trailing whitespace, which hopefully doesn't matter. It breaks when the...

enhancement

``` Traceback (most recent call last): File "/home/user/code/avalanche/avalanche.py", line 1318, in main() File "/home/user/code/avalanche/avalanche.py", line 1314, in main args.output.write(Grammar(args.input, limit=args.limit, **args.function).generate()) File "/home/user/code/avalanche/avalanche.py", line 225, in __init__ self.sanity_check() File "/home/user/code/avalanche/avalanche.py",...

bug

Grammar files can get big and complicated and it can be hard to understand weight values once they are nested in other choices and/or when then have multiple entries that...

enhancement