diff options
Diffstat (limited to 'test')
| -rwxr-xr-x | test/test_all.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test_all.py b/test/test_all.py index a8a0d599..445d2b16 100755 --- a/test/test_all.py +++ b/test/test_all.py @@ -696,6 +696,18 @@ for script in [["basic_op.py"], ]: testset += ExampleExpression(script) +## Loader +class ExampleLoader(Example): + """Loader examples specificities: + - script path begins with "loader/" + """ + example_dir = "loader" + + +testset += ExampleLoader(["test_pe.py"], products=["uu.bin"]) +# A sample is required, so "minidump_to_pe.py" is disabled for now + + ## Symbolic Execution class ExampleSymbolExec(Example): """Symbol Exec examples specificities: |